From e003b4333d38d5a1254d020425fda6f62465e3d0 Mon Sep 17 00:00:00 2001
From: Violette Roche-Montane <violette.roche-montane@forgerock.com>
Date: Mon, 03 Mar 2014 15:41:37 +0000
Subject: [PATCH] Minor code cleanup, replaced EOL by com.forgerock.opendj.cli.Utils.LINE_SEPARATOR.

---
 opendj3-server-dev/src/guitools/org/opends/guitools/uninstaller/UninstallerArgumentParser.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/opendj3-server-dev/src/guitools/org/opends/guitools/uninstaller/UninstallerArgumentParser.java b/opendj3-server-dev/src/guitools/org/opends/guitools/uninstaller/UninstallerArgumentParser.java
index 0d87259..e788d64 100644
--- a/opendj3-server-dev/src/guitools/org/opends/guitools/uninstaller/UninstallerArgumentParser.java
+++ b/opendj3-server-dev/src/guitools/org/opends/guitools/uninstaller/UninstallerArgumentParser.java
@@ -48,6 +48,7 @@
 import static org.opends.messages.AdminToolMessages.*;
 import static org.opends.messages.ToolMessages.*;
 import static com.forgerock.opendj.cli.ArgumentConstants.*;
+import static com.forgerock.opendj.cli.Utils.LINE_SEPARATOR;
 
 /**
  * Class used to parse and populate the arguments of the Uninstaller.
@@ -379,7 +380,7 @@
           "--"+noPromptArg.getLongIdentifier());
       if (buf.length() > 0)
       {
-        buf.append(EOL);
+        buf.append(LINE_SEPARATOR);
       }
       buf.append(message);
     }
@@ -402,7 +403,7 @@
               removeArg.getLongIdentifier());
           if (buf.length() > 0)
           {
-            buf.append(EOL);
+            buf.append(LINE_SEPARATOR);
           }
           buf.append(message);
         }

--
Gitblit v1.10.0