From e08ee9a21301e4607806ff0230eca74d6dc3b13b 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
---
opendj-sdk/opends/src/statuspanel/org/opends/statuspanel/StatusCli.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/opendj-sdk/opends/src/statuspanel/org/opends/statuspanel/StatusCli.java b/opendj-sdk/opends/src/statuspanel/org/opends/statuspanel/StatusCli.java
index 8949175..f7f73fa 100644
--- a/opendj-sdk/opends/src/statuspanel/org/opends/statuspanel/StatusCli.java
+++ b/opendj-sdk/opends/src/statuspanel/org/opends/statuspanel/StatusCli.java
@@ -38,6 +38,7 @@
import javax.swing.table.TableModel;
import org.opends.quicksetup.CurrentInstallStatus;
+import org.opends.quicksetup.Installation;
import org.opends.quicksetup.util.Utils;
import org.opends.server.core.DirectoryServer;
@@ -337,10 +338,10 @@
String arg;
if (Utils.isWindows())
{
- arg = Utils.getWindowsStatusCliFileName();
+ arg = Installation.WINDOWS_STATUSCLI_FILE_NAME;
} else
{
- arg = Utils.getUnixStatusCliFileName();
+ arg = Installation.UNIX_STATUSCLI_FILE_NAME;
}
/*
* This is required because the usage message contains '{' characters that
--
Gitblit v1.10.0