Split a long method declaration into two lines to keep checkstyle happy.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137706 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0531f837cb
commit
f225551e91
|
@ -64,7 +64,7 @@ import java.util.Random;
|
|||
* @author Gary Gregory
|
||||
* @author Phil Steitz
|
||||
* @since 1.0
|
||||
* @version $Id: RandomStringUtils.java,v 1.25 2003/09/07 14:32:34 psteitz Exp $
|
||||
* @version $Id: RandomStringUtils.java,v 1.26 2003/11/04 20:31:45 fredrik Exp $
|
||||
*/
|
||||
public class RandomStringUtils {
|
||||
|
||||
|
@ -252,7 +252,8 @@ public class RandomStringUtils {
|
|||
* @throws IllegalArgumentException if <code>count</code> < 0.
|
||||
* @since 2.0
|
||||
*/
|
||||
public static String random(int count, int start, int end, boolean letters, boolean numbers, char[] chars, Random random) {
|
||||
public static String random(int count, int start, int end, boolean letters, boolean numbers,
|
||||
char[] chars, Random random) {
|
||||
if (count == 0) {
|
||||
return "";
|
||||
} else if (count < 0) {
|
||||
|
|
Loading…
Reference in New Issue