diff --git a/src/java/org/apache/commons/lang/math/NumberUtils.java b/src/java/org/apache/commons/lang/math/NumberUtils.java index 47547f122..f91c02e8c 100644 --- a/src/java/org/apache/commons/lang/math/NumberUtils.java +++ b/src/java/org/apache/commons/lang/math/NumberUtils.java @@ -69,9 +69,9 @@ import org.apache.commons.lang.NullArgumentException; * @author Phil Steitz * @author Matthew Hawthorne * @since 2.0 - * @version $Id: NumberUtils.java,v 1.5 2003/07/26 02:57:37 ggregory Exp $ + * @version $Id: NumberUtils.java,v 1.6 2003/07/26 15:39:04 scolebourne Exp $ */ -public final class NumberUtils { +public class NumberUtils { /** Reusable Long constant for zero. */ public static final Long LONG_ZERO = new Long(0L); diff --git a/src/java/org/apache/commons/lang/math/RandomUtils.java b/src/java/org/apache/commons/lang/math/RandomUtils.java index 2538d1f57..3e94b329a 100644 --- a/src/java/org/apache/commons/lang/math/RandomUtils.java +++ b/src/java/org/apache/commons/lang/math/RandomUtils.java @@ -62,9 +62,9 @@ import java.util.Random; * * @author Henri Yandell * @since 2.0 - * @version $Id: RandomUtils.java,v 1.4 2003/07/25 23:06:58 scolebourne Exp $ + * @version $Id: RandomUtils.java,v 1.5 2003/07/26 15:39:04 scolebourne Exp $ */ -public final class RandomUtils { +public class RandomUtils { public static final Random JVM_RANDOM = new JVMRandom();