From 10948b56d9da058dde6838e7566c72966fc7856c Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Sat, 07 Apr 2007 00:06:48 +0000
Subject: [PATCH] completed migration of code to use Installer constants and methods for filesystem related tasks

---
 opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallLauncher.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallLauncher.java b/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallLauncher.java
index 4e10057..f7c3967 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallLauncher.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/uninstaller/UninstallLauncher.java
@@ -29,6 +29,7 @@
 
 import org.opends.quicksetup.CliApplication;
 import org.opends.quicksetup.Launcher;
+import org.opends.quicksetup.Installation;
 import org.opends.quicksetup.util.Utils;
 
 /**
@@ -95,9 +96,9 @@
   protected void printUsage() {
     String arg;
     if (Utils.isWindows()) {
-      arg = Utils.getWindowsUninstallFileName();
+      arg = Installation.WINDOWS_UNINSTALL_FILE_NAME;
     } else {
-      arg = Utils.getUnixUninstallFileName();
+      arg = Installation.UNIX_UNINSTALL_FILE_NAME;
     }
     String msg = getMsg("uninstall-launcher-usage");
     /*

--
Gitblit v1.10.0