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

Violette Roche-Montane
24.21.2014 a92e17ed9863af076855b8636d77f1ca0fe06555
OPENDJ-1303 "opendj-cli"
- Removed unused TODO return code.
1 files modified
13 ■■■■■ changed files
opendj-cli/src/main/java/com/forgerock/opendj/cli/ReturnCode.java 13 ●●●●● patch | view | raw | blame | history
opendj-cli/src/main/java/com/forgerock/opendj/cli/ReturnCode.java
@@ -179,12 +179,6 @@
     */
    CLIENT_SIDE_AUTH_UNKNOWN(86),
    /**
     * The client-side result code that indicates that the client was not able to
     * establish a connection to the server.  This is for client-side use only and
     * should never be transferred over protocol.
     */
    CLIENT_SIDE_CONNECT_ERROR(91),
    /**
     * The client-side result code that indicates that there was a problem with one or more of the parameters provided
     * by the user.
     * <PRE>
@@ -192,11 +186,12 @@
     * </PRE>
     */
    CLIENT_SIDE_PARAM_ERROR(89),
    /**
     * TODO to review.
     * The client-side result code that indicates that the client was not able to
     * establish a connection to the server.  This is for client-side use only and
     * should never be transferred over protocol.
     */
    TODO(99);
    CLIENT_SIDE_CONNECT_ERROR(91);
    private int returnCode;
    private static final Map<Integer, String> RETURNCODE = new HashMap<Integer, String>();