From 12499600a8095e85f4e6afbfff3347b74d7e6d1e Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Thu, 10 May 2007 18:55:38 +0000
Subject: [PATCH] This chunk of code:

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

diff --git a/opends/src/quicksetup/org/opends/quicksetup/uninstaller/Uninstaller.java b/opends/src/quicksetup/org/opends/quicksetup/uninstaller/Uninstaller.java
index 0cebc3f..d6f8775 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/uninstaller/Uninstaller.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/uninstaller/Uninstaller.java
@@ -284,7 +284,7 @@
   /**
    * {@inheritDoc}
    */
-  public void finishClicked(final WizardStep cStep, final QuickSetup qs) {
+  public boolean finishClicked(final WizardStep cStep, final QuickSetup qs) {
     if (cStep == Step.CONFIRM_UNINSTALL) {
       BackgroundTask worker = new BackgroundTask() {
         public Object processBackgroundTask() throws UserDataException {
@@ -333,6 +333,8 @@
       qs.getDialog().workerStarted();
       worker.startBackgroundTask();
     }
+    // Uninstaller is responsible for updating user data and launching
+    return false;
   }
 
   /**

--
Gitblit v1.10.0