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

Gaetan Boismal
18.45.2016 3751c3aa75e5a9497a01a22fc8966e719ec68111
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);
    }
    /**