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:
Fredrik Westermarck 2003-11-04 20:31:45 +00:00
parent 0531f837cb
commit f225551e91
1 changed files with 3 additions and 2 deletions

View File

@ -64,7 +64,7 @@
* @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 static String random(int count, int start, int end, boolean letters, bool
* @throws IllegalArgumentException if <code>count</code> &lt; 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) {