From 093afc236cd341a9eb046bc9acd95a0533d543af Mon Sep 17 00:00:00 2001
From: Gaetan Boismal <gaetan.boismal@forgerock.com>
Date: Thu, 11 Feb 2016 13:46:49 +0000
Subject: [PATCH] OPENDJSDK-42 Code cleanup

---
 opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/BooleanArgument.java |   18 ++----------------
 1 files changed, 2 insertions(+), 16 deletions(-)

diff --git a/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/BooleanArgument.java b/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/BooleanArgument.java
index e8efc58..55a8ec9 100644
--- a/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/BooleanArgument.java
+++ b/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/BooleanArgument.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2006-2008 Sun Microsystems, Inc.
- *      Portions copyright 2014 ForgeRock AS
+ *      Portions copyright 2014-2016 ForgeRock AS
  */
 package com.forgerock.opendj.cli;
 
@@ -74,27 +74,13 @@
         }
     }
 
-    /** {@inheritDoc} */
     @Override
     public final void setPresent(final boolean isPresent) {
         addValue(String.valueOf(isPresent));
     }
 
-    /**
-     * Indicates whether the provided value is acceptable for use in this
-     * argument.
-     *
-     * @param valueString
-     *            The value for which to make the determination.
-     * @param invalidReason
-     *            A buffer into which the invalid reason may be written if the
-     *            value is not acceptable.
-     * @return <CODE>true</CODE> if the value is acceptable, or
-     *         <CODE>false</CODE> if it is not.
-     */
     @Override
-    public boolean valueIsAcceptable(final String valueString,
-            final LocalizableMessageBuilder invalidReason) {
+    public boolean valueIsAcceptable(final String valueString, final LocalizableMessageBuilder invalidReason) {
         // This argument type should never have a value, so any value
         // provided will be unacceptable.
         invalidReason.append(ERR_BOOLEANARG_NO_VALUE_ALLOWED.get(getName()));

--
Gitblit v1.10.0