From 2f01ee4d569022fff64691323b9bbcedc4285d98 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 31 Jan 2014 11:30:32 +0000
Subject: [PATCH] Removed now useless calls to .toString() on arguments of ArgN.get(...).

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

diff --git a/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/CurrentInstallStatus.java b/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/CurrentInstallStatus.java
index b7a3ec2..b563663 100644
--- a/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/CurrentInstallStatus.java
+++ b/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/CurrentInstallStatus.java
@@ -112,8 +112,7 @@
           String cmd = Utils.isWindows() ?
               Installation.WINDOWS_SETUP_FILE_NAME :
                 Installation.UNIX_SETUP_FILE_NAME;
-          installationMsg =
-            INFO_INSTALLSTATUS_INSTALLED_CLI.get(cmd, buf.toString());
+          installationMsg = INFO_INSTALLSTATUS_INSTALLED_CLI.get(cmd, buf);
         }
         else
         {
@@ -125,7 +124,7 @@
             buf.append("</li>");
           }
           buf.append("</ul>");
-          installationMsg = INFO_INSTALLSTATUS_INSTALLED.get( buf.toString() );
+          installationMsg = INFO_INSTALLSTATUS_INSTALLED.get(buf);
         }
       }
     }

--
Gitblit v1.10.0