Been meaning to do this. Made the constructor public in line with StringUtils.
scolebourne thankfully reminded me by doing NumberUtils :) git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137041 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
410bc5a289
commit
01a6edec03
|
@ -63,7 +63,7 @@ import java.util.Random;
|
|||
* @author <a href="mailto:bayard@generationjava.com">Henri Yandell</a>
|
||||
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
|
||||
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
|
||||
* @version $Id: RandomStringUtils.java,v 1.2 2002/07/26 14:05:04 bayard Exp $
|
||||
* @version $Id: RandomStringUtils.java,v 1.3 2002/09/18 19:52:26 bayard Exp $
|
||||
*/
|
||||
public class RandomStringUtils {
|
||||
|
||||
|
@ -77,7 +77,7 @@ public class RandomStringUtils {
|
|||
/**
|
||||
* Prevent construction of RandomStringUtils instances
|
||||
*/
|
||||
private RandomStringUtils() {
|
||||
public RandomStringUtils() {
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue