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:
parent
89d6fa50c5
commit
9410b31864
|
@ -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);
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue