File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
tools/behinder/src/main/java/com/reajason/javaweb/behinder Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,8 @@ private static String getRandomStringInternal(int length) {
4141
4242 public static String getRandomClassName () {
4343 String [] domainAs = new String []{"com" , "net" , "org" , "sun" };
44- String domainB = getRandomAlpha ((new Random ()).nextInt (5 ) + 3 ).toLowerCase ();
45- String domainC = getRandomAlpha ((new Random ()).nextInt (5 ) + 3 ).toLowerCase ();
46- String domainD = getRandomAlpha ((new Random ()).nextInt (5 ) + 3 ).toLowerCase ();
44+ String domainB = getRandomAlpha ((new Random ()).nextInt (5 ) + 3 );
45+ String domainC = getRandomAlpha ((new Random ()).nextInt (5 ) + 3 );
4746 String className = getRandomAlpha ((new Random ()).nextInt (7 ) + 4 );
4847 className = className .substring (0 , 1 ).toUpperCase () + className .substring (1 ).toLowerCase ();
4948 int domainAIndex = (new Random ()).nextInt (4 );
You can’t perform that action at this time.
0 commit comments