Fix NoWhitespaceAfter checkstyle violation

in StringUtils.
This commit is contained in:
Florian Schmaus 2017-04-25 17:42:16 +02:00
parent 162dee0a47
commit 45edc969c9
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ public class StringUtils {
final Random random = randGen.get();
// Create a char buffer to put random letters and numbers in.
char [] randBuffer = new char[length];
char[] randBuffer = new char[length];
for (int i=0; i<randBuffer.length; i++) {
randBuffer[i] = numbersAndLetters[random.nextInt(numbersAndLetters.length)];
}