From a92e17ed9863af076855b8636d77f1ca0fe06555 Mon Sep 17 00:00:00 2001
From: Violette Roche-Montane <violette.roche-montane@forgerock.com>
Date: Thu, 24 Apr 2014 14:21:15 +0000
Subject: [PATCH] OPENDJ-1303 "opendj-cli" - Removed unused TODO return code.

---
 opendj-cli/src/main/java/com/forgerock/opendj/cli/ReturnCode.java |   13 ++++---------
 1 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/opendj-cli/src/main/java/com/forgerock/opendj/cli/ReturnCode.java b/opendj-cli/src/main/java/com/forgerock/opendj/cli/ReturnCode.java
index 61555de..6fcb5a1 100644
--- a/opendj-cli/src/main/java/com/forgerock/opendj/cli/ReturnCode.java
+++ b/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>();

--
Gitblit v1.10.0