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

kenneth_suter
23.57.2007 67a4b575be3f35220d91a15db0ba1923d25268c0
opendj-sdk/opends/src/guitools/org/opends/guitools/uninstaller/UninstallerArgumentParser.java
@@ -54,7 +54,7 @@
{
  private BooleanArgument interactive;
  private BooleanArgument forceOnError;
  private BooleanArgument silent;
  private BooleanArgument quiet;
  private BooleanArgument removeAll;
  private BooleanArgument removeServerLibraries;
  private BooleanArgument removeDatabases;
@@ -163,12 +163,12 @@
        "forceOnError",
        INFO_UNINSTALLDS_DESCRIPTION_FORCE.get());
    args.add(forceOnError);
    silent = new BooleanArgument(
        SecureConnectionCliParser.SILENT_OPTION_LONG,
        SecureConnectionCliParser.SILENT_OPTION_SHORT,
        SecureConnectionCliParser.SILENT_OPTION_LONG,
    quiet = new BooleanArgument(
        SecureConnectionCliParser.QUIET_OPTION_LONG,
        SecureConnectionCliParser.QUIET_OPTION_SHORT,
        SecureConnectionCliParser.QUIET_OPTION_LONG,
        INFO_UNINSTALLDS_DESCRIPTION_SILENT.get());
    args.add(silent);
    args.add(quiet);
    adminUidArg = new StringArgument("adminUID", 'I',
        "adminUID", false, false, true, "adminUID",
@@ -224,14 +224,14 @@
  }
  /**
   * Tells whether the user specified to have a silent uninstall or not.
   * Tells whether the user specified to have a quiet uninstall or not.
   * This method must be called after calling parseArguments.
   * @return <CODE>true</CODE> if the user specified to have a silent
   * @return <CODE>true</CODE> if the user specified to have a quiet
   * uninstall and <CODE>false</CODE> otherwise.
   */
  public boolean isSilent()
  public boolean isQuiet()
  {
    return silent.isPresent();
    return quiet.isPresent();
  }
  /**