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

Gaetan Boismal
18.45.2016 3751c3aa75e5a9497a01a22fc8966e719ec68111
Code cleanup
3 files modified
60 ■■■■■ changed files
opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentParser.java 15 ●●●● patch | view | raw | blame | history
opendj-cli/src/main/java/com/forgerock/opendj/cli/ConsoleApplication.java 33 ●●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/tools/upgrade/UpgradeTasks.java 12 ●●●● patch | view | raw | blame | history
opendj-cli/src/main/java/com/forgerock/opendj/cli/ArgumentParser.java
@@ -201,17 +201,10 @@
     *            Indicates whether long arguments should be treated in a
     *            case-sensitive manner.
     */
    public ArgumentParser(final String mainClassName, final LocalizableMessage toolDescription,
            final boolean longArgumentsCaseSensitive) {
        this.mainClassName = mainClassName;
        this.toolDescription = toolDescription;
        this.longArgumentsCaseSensitive = longArgumentsCaseSensitive;
        allowsTrailingArguments = false;
        trailingArgsDisplayName = null;
        maxTrailingArguments = 0;
        minTrailingArguments = 0;
        initGroups();
    public ArgumentParser(final String mainClassName,
                          final LocalizableMessage toolDescription,
                          final boolean longArgumentsCaseSensitive) {
        this(mainClassName, toolDescription, longArgumentsCaseSensitive, false, 0, 0, null);
    }
    /**
opendj-cli/src/main/java/com/forgerock/opendj/cli/ConsoleApplication.java
@@ -310,7 +310,7 @@
     * @param progress
     *            The current percentage progress to print.
     */
    private final void printProgressBar(final int linePos, final int progress) {
    private void printProgressBar(final int linePos, final int progress) {
        if (!isQuiet()) {
            final int spacesLeft = MAX_LINE_WIDTH - linePos - 10;
            StringBuilder bar = new StringBuilder();
@@ -464,24 +464,23 @@
        if (msgStyle != null && msgStyle == Style.TITLE) {
            println();
        }
        while (true) {
            if (defaultValue != null) {
                prompt = INFO_PROMPT_SINGLE_DEFAULT.get(prompt, defaultValue);
            }
            final String response = readLineOfInput(prompt);
            if (msgStyle != null && (msgStyle == Style.TITLE || msgStyle == Style.SUBTITLE)) {
                println();
            }
            if ("".equals(response)) {
                if (defaultValue != null) {
                    return defaultValue;
                }
                println(INFO_ERROR_EMPTY_RESPONSE.get());
            }
            return response;
        if (defaultValue != null) {
            prompt = INFO_PROMPT_SINGLE_DEFAULT.get(prompt, defaultValue);
        }
        final String response = readLineOfInput(prompt);
        if (msgStyle != null && (msgStyle == Style.TITLE || msgStyle == Style.SUBTITLE)) {
            println();
        }
        if ("".equals(response)) {
            if (defaultValue != null) {
                return defaultValue;
            }
            println(INFO_ERROR_EMPTY_RESPONSE.get());
        }
        return response;
    }
    /**
opendj-server-legacy/src/main/java/org/opends/server/tools/upgrade/UpgradeTasks.java
@@ -1365,12 +1365,6 @@
    };
  }
  /** Prevent instantiation. */
  private UpgradeTasks()
  {
    // Do nothing.
  }
  /**
   * This task exists because OpenDJ 3.0.0 added an attribute type definition for
   * {@code ds-cfg-csv-delimiter-char}, but unfortunately trailing spaces existed after the closing
@@ -1521,4 +1515,10 @@
      }
    };
  }
  /** Prevent instantiation. */
  private UpgradeTasks()
  {
    // Do nothing.
  }
}