Remove final status, classes can be subclassed

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137519 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-07-26 15:39:04 +00:00
parent 89d6fa50c5
commit 9410b31864
2 changed files with 4 additions and 4 deletions

View File

@ -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);

View File

@ -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();