mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

kenneth_suter
10.55.2007 12499600a8095e85f4e6afbfff3347b74d7e6d1e
opends/src/quicksetup/org/opends/quicksetup/ui/QuickSetup.java
@@ -258,6 +258,10 @@
  {
    final WizardStep cStep = getCurrentStep();
    application.nextClicked(cStep, this);
    updateUserData(cStep);
  }
  private void updateUserData(final WizardStep cStep) {
    BackgroundTask worker = new BackgroundTask() {
      public Object processBackgroundTask() throws UserDataException {
        try {
@@ -294,6 +298,9 @@
        } else {
          setCurrentStep(application.getNextWizardStep(cStep));
        }
        if (currentStep.isProgressStep()) {
          launch();
        }
      }
    };
    getDialog().workerStarted();
@@ -307,7 +314,9 @@
  private void finishClicked()
  {
    final WizardStep cStep = getCurrentStep();
    application.finishClicked(cStep, this);
    if (application.finishClicked(cStep, this)) {
      updateUserData(cStep);
    }
  }
  /**
@@ -445,7 +454,7 @@
  public void launch()
  {
    application.addProgressUpdateListener(this);
    new Thread(application).start();
    new Thread(application, "Application Thread").start();
    Thread t = new Thread(new Runnable()
    {
      public void run()