From ca07d757efc25246e050c37e0d0b479072c51f56 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 17 May 2007 13:03:10 +0000
Subject: [PATCH] This commit cleans up the output for both the CLI and Web Start versions of the upgrader so that it conforms to Brian's proposal to limit messages to the progress text area and CLI output.  There is some new plumbing that affects but should not change other applications.

---
 opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/ui/GuiApplication.java |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/ui/GuiApplication.java b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/ui/GuiApplication.java
index 9ad60a0..1a0c203 100644
--- a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/ui/GuiApplication.java
+++ b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/ui/GuiApplication.java
@@ -487,10 +487,9 @@
   protected void startServerWithoutConnectionHandlers()
   throws ApplicationException {
     try {
-      ServerController control = new ServerController(this);
+      ServerController control = new ServerController(getInstallation());
       if (getInstallation().getStatus().isServerRunning()) {
-        control.stopServer();
-        notifyListeners(formatter.getLineBreak());
+        control.stopServer(true);
       }
       new InProcessServerController(getInstallation()).startServer(true);
     } catch (IOException e) {

--
Gitblit v1.10.0