From 7e014d165df1bf3dd13ffc4a5d8906a0b1561eba 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:

---
 opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/StatusPanelController.java |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/StatusPanelController.java b/opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/StatusPanelController.java
index baada89..d924a48 100644
--- a/opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/StatusPanelController.java
+++ b/opendj-sdk/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