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

matthew_swift
09.31.2010 efd4613df62d37aa785a78a78cdc89c28f24f5cd
sdk/src/com/sun/opends/sdk/tools/IntegerArgument.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Copyright 2006-2010 Sun Microsystems, Inc.
 */
package com.sun.opends.sdk.tools;
@@ -512,8 +512,7 @@
    }
    // If there is a lower bound, then the value must be greater than or
    // equal
    // to it.
    // equal to it.
    if (hasLowerBound && (intValue < lowerBound))
    {
      invalidReason.append(ERR_INTARG_VALUE_BELOW_LOWER_BOUND.get(getName(),
@@ -522,8 +521,7 @@
    }
    // If there is an upper bound, then the value must be less than or
    // equal to
    // it.
    // equal to it.
    if (hasUpperBound && (intValue > upperBound))
    {