From 80c58327faaa4873369f6bb949e62792c2f708e0 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Wed, 15 Aug 2007 21:34:53 +0000
Subject: [PATCH] This commit is a step toward getting OpenDS internationalized. There are still issues to be resolved before we can declare that we are internationalized but this commit covers the bulk of changes needed at this time.

---
 opends/tests/unit-tests-testng/src/server/org/opends/server/tasks/LdifFileWriter.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/tasks/LdifFileWriter.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/tasks/LdifFileWriter.java
index 36cf39b..60d8494 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/tasks/LdifFileWriter.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/tasks/LdifFileWriter.java
@@ -36,6 +36,7 @@
 import org.opends.server.types.ExistingFileBehavior;
 import org.opends.server.util.LDIFWriter;
 import org.opends.server.util.LDIFException;
+import org.opends.messages.Message;
 
 import java.io.IOException;
 import java.util.Random;
@@ -79,7 +80,7 @@
        throws IOException, InitializationException, MakeLDIFException
   {
     TemplateFile template = new TemplateFile(resourcePath, new Random(1));
-    ArrayList<String> warnings = new ArrayList<String>();
+    ArrayList<Message> warnings = new ArrayList<Message>();
     template.parse(templatePath, warnings);
     makeLdif(ldifPath, template);
   }
@@ -103,7 +104,7 @@
        throws IOException, InitializationException, MakeLDIFException
   {
     TemplateFile template = new TemplateFile(resourcePath, new Random(1));
-    ArrayList<String> warnings = new ArrayList<String>();
+    ArrayList<Message> warnings = new ArrayList<Message>();
     template.parse(templateLines, warnings);
     makeLdif(ldifPath, template);
   }

--
Gitblit v1.10.0