ThrawnCA commented on code in PR #1523:
URL: https://github.com/apache/commons-lang/pull/1523#discussion_r2660077880


##########
src/main/java/org/apache/commons/lang3/RandomStringUtils.java:
##########
@@ -264,6 +264,19 @@ public static String random(int count, int start, int end, 
final boolean letters
             throw new IllegalArgumentException("The chars array must not be 
empty");
         }
 
+        if (chars!=null) {

Review Comment:
   Lots of missing spaces in this code block. There should be spaces before and 
after operators, as per the style used in the rest of this file, eg this line 
should be `if (chars != null) {`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to