From efd4613df62d37aa785a78a78cdc89c28f24f5cd Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 09 Sep 2010 17:31:33 +0000
Subject: [PATCH] Allow multiple percentile arguments and remove arbitrary 50% lower bound.
---
sdk/src/com/sun/opends/sdk/tools/IntegerArgument.java | 8 +++-----
1 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/sdk/src/com/sun/opends/sdk/tools/IntegerArgument.java b/sdk/src/com/sun/opends/sdk/tools/IntegerArgument.java
index 9681ddf..10c616a 100644
--- a/sdk/src/com/sun/opends/sdk/tools/IntegerArgument.java
+++ b/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))
{
--
Gitblit v1.10.0