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

Jean-Noel Rouvignac
15.17.2014 6870993d12bf8a2b9d5cd103dc5ccabc42f9bf5d
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;