From b54e25e8af0e73b7ddaca4eaec088803ea6a7e4f Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Thu, 22 Feb 2007 09:30:33 +0000
Subject: [PATCH] Fix for Issues #1025 and #1248 ('stop-ds.bat should be able to stop server even if LDAP port' and 'cannot stop server through status panel').
---
opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallLauncher.java | 10 +---------
1 files changed, 1 insertions(+), 9 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallLauncher.java b/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallLauncher.java
index a29b1b3..ccc1290 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallLauncher.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallLauncher.java
@@ -192,15 +192,7 @@
* This is required because the usage message contains '{' characters that
* mess up the MessageFormat.format method.
*/
- String msg;
- if (Utils.isWindows())
- {
- msg = getMsg("uninstall-launcher-usage-windows");
- }
- else
- {
- msg = getMsg("uninstall-launcher-usage-unix");
- }
+ String msg = getMsg("uninstall-launcher-usage");
msg = msg.replace("{0}", arg);
System.err.println(msg);
}
--
Gitblit v1.10.0