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

jvergara
17.45.2009 2ad60cfec2ff93847fc648a335a9a8dced5060cd
opends/src/quicksetup/org/opends/quicksetup/upgrader/Upgrader.java
@@ -851,7 +851,7 @@
                    || (response.toLowerCase().equals(no.toLowerCase()))
                    || (response.length() == 0))
                {
                  System.exit(ReturnCode.CANCELLED.getReturnCode());
                  System.exit(ReturnCode.CANCELED.getReturnCode());
                }
                else if (response.toLowerCase().equals(yes.toLowerCase()))
                {
@@ -1317,7 +1317,7 @@
      // We don't consider a  user cancelation exception
      // to be an error.
      if (ae.getType() != ReturnCode.CANCELLED) {
      if (ae.getType() != ReturnCode.CANCELED) {
        this.runError = ae;
      } else {
        this.abort = true;
@@ -1497,7 +1497,7 @@
   */
  public void checkAbort() throws ApplicationException {
    if (abort) throw new ApplicationException(
        ReturnCode.CANCELLED,
        ReturnCode.CANCELED,
            INFO_UPGRADE_CANCELED.get(), null);
  }