mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Fix NoWhitespaceAfter checkstyle violation
in StringUtils.
This commit is contained in:
parent
162dee0a47
commit
45edc969c9
1 changed files with 1 additions and 1 deletions
|
@ -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)];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue