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

Violette Roche-Montane
27.30.2014 a22a0748441fcfaa89541eed70f4c0502bdf7b0f
Fixed minor bug when uninstall is in cli mode.
1 files modified
12 ■■■■■ changed files
opendj-sdk/opendj3-server-dev/src/guitools/org/opends/guitools/uninstaller/UninstallCliHelper.java 12 ●●●●● patch | view | raw | blame | history
opendj-sdk/opendj3-server-dev/src/guitools/org/opends/guitools/uninstaller/UninstallCliHelper.java
@@ -1349,7 +1349,6 @@
    boolean returnValue;
    boolean stopProcessing = false;
    boolean reloadTopologyCache = false;
    boolean interactive = parser.isInteractive();
    logger.info(LocalizableMessage.raw("Handle topology cache."));
@@ -1390,7 +1389,7 @@
        if (e.getCause() != null &&
            Utils.isCertificateException(e.getCause()))
        {
          if (interactive)
          if (isInteractive())
          {
            println();
            stopProcessing = true;
@@ -1417,7 +1416,7 @@
        exceptionMsgs.add(Utils.getMessage(e));
      }
    }
    if (interactive)
    if (isInteractive())
    {
      if (!stopProcessing && exceptionMsgs.size() > 0)
      {
@@ -1490,14 +1489,11 @@
  /** {@inheritDoc} */
  @Override
  public boolean isInteractive() {
    if (!forceNonInteractive)
    if (forceNonInteractive)
    {
      return false;
    }
    else
    {
      return parser.isInteractive();
    }
    return parser.isInteractive();
  }