From 56269af431723ec4c456c92d0d019e7f6e16832a Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Mon, 10 Feb 2014 16:17:31 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1288 :    Migrate I18n and logging support to i18n framework and SLF4J

---
 opendj3-server-dev/src/server/org/opends/server/loggers/DebugMessageFormatter.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/loggers/DebugMessageFormatter.java b/opendj3-server-dev/src/server/org/opends/server/loggers/DebugMessageFormatter.java
index d07d71f..90ab922 100644
--- a/opendj3-server-dev/src/server/org/opends/server/loggers/DebugMessageFormatter.java
+++ b/opendj3-server-dev/src/server/org/opends/server/loggers/DebugMessageFormatter.java
@@ -33,7 +33,7 @@
  * format tokens with the text value of message arguments in debug logging
  * records.
  */
-public class DebugMessageFormatter
+class DebugMessageFormatter
 {
   /**
    * Format the message format string with the provided arguments.
@@ -42,7 +42,7 @@
    * @param msgArgs the arguments to use when replacing tokens in the message.
    * @return the formatted message string.
    */
-  public static String format(String msg, Object[] msgArgs)
+  static String format(String msg, Object[] msgArgs)
   {
     StringBuilder buffer= new StringBuilder();
     Object[] decoratedArgs = decorateMessageArgs(msgArgs);

--
Gitblit v1.10.0