From 8feee36de8e6042f928439b06a03d50018423afe Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Fri, 17 Aug 2007 00:53:26 +0000
Subject: [PATCH] The following modifications have the following goals:
---
opends/src/guitools/org/opends/guitools/statuspanel/StatusPanelController.java | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/opends/src/guitools/org/opends/guitools/statuspanel/StatusPanelController.java b/opends/src/guitools/org/opends/guitools/statuspanel/StatusPanelController.java
index baada89..d924a48 100644
--- a/opends/src/guitools/org/opends/guitools/statuspanel/StatusPanelController.java
+++ b/opends/src/guitools/org/opends/guitools/statuspanel/StatusPanelController.java
@@ -558,8 +558,7 @@
getFormattedProgressWithLineBreak(INFO_PROGRESS_STARTING.get()));
ArrayList<String> argList = new ArrayList<String>();
- Installation installation =
- new Installation(Utils.getInstallPathFromClasspath());
+ Installation installation = Installation.getLocal();
argList.add(Utils.getPath(installation.getServerStartCommandFile()));
String[] args = new String[argList.size()];
@@ -678,8 +677,7 @@
getFormattedProgressWithLineBreak(INFO_PROGRESS_STOPPING.get()));
ArrayList<String> argList = new ArrayList<String>();
- Installation installation =
- new Installation(Utils.getInstallPathFromClasspath());
+ Installation installation = Installation.getLocal();
argList.add(Utils.getPath(installation.getServerStopCommandFile()));
String[] args = new String[argList.size()];
argList.toArray(args);
--
Gitblit v1.10.0