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

kenneth_suter
23.57.2007 67a4b575be3f35220d91a15db0ba1923d25268c0
opendj-sdk/opends/src/guitools/org/opends/guitools/uninstaller/UninstallCliHelper.java
@@ -97,7 +97,7 @@
    UninstallUserData userData = new UninstallUserData();
    boolean isInteractive;
    boolean isSilent;
    boolean isQuiet;
    boolean isCancelled = false;
    /* Step 1: analyze the arguments.
@@ -113,9 +113,9 @@
    isInteractive = args.isInteractive();
    isSilent = args.isSilent();
    isQuiet = args.isQuiet();
    userData.setSilent(isSilent);
    userData.setQuiet(isQuiet);
    userData.setForceOnError(args.isForceOnError());
    userData.setTrustManager(args.getTrustManager());
@@ -388,7 +388,7 @@
   * @return <CODE>true</CODE> if the user wants to continue with uninstall and
   * <CODE>false</CODE> otherwise.
   * @throws UserDataException if there is a problem with the data
   * provided by the user (in the particular case where we are on silent
   * provided by the user (in the particular case where we are on quiet
   * uninstall and some data is missing or not valid).
   */
  private boolean checkServerState(UninstallUserData userData,
@@ -450,7 +450,7 @@
        {
          if (confirmToUpdateRemoteAndStart())
          {
            boolean startWorked = startServer(userData.isSilent());
            boolean startWorked = startServer(userData.isQuiet());
            // Ask for authentication if needed, etc.
            if (startWorked)
            {
@@ -489,7 +489,7 @@
        }
        else
        {
          boolean startWorked = startServer(userData.isSilent());
          boolean startWorked = startServer(userData.isQuiet());
          // Ask for authentication if needed, etc.
          if (startWorked)
          {