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

Jean-Noel Rouvignac
15.17.2014 661593f15f14aaf55d73c7979dab1e900ebae2af
opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/MenuResult.java
@@ -174,13 +174,13 @@
        return success(Collections.singleton(value));
    }
    // The type of result returned from the menu.
    /** The type of result returned from the menu. */
    private final Type type;
    // The menu result value(s).
    /** The menu result value(s). */
    private final Collection<T> values;
    // Private constructor.
    /** Private constructor. */
    private MenuResult(Type type, Collection<T> values) {
        this.type = type;
        this.values = values;