Use final

This commit is contained in:
Gary Gregory 2023-10-06 09:37:59 -04:00
parent 422948794e
commit 0cb4e4cc97
1 changed files with 1 additions and 1 deletions

View File

@ -3636,7 +3636,7 @@ public class StringUtils {
boolean containsLowercase = false;
final int sz = cs.length();
for (int i = 0; i < sz; i++) {
char nowChar = cs.charAt(i);
final char nowChar = cs.charAt(i);
if (Character.isUpperCase(nowChar)) {
containsUppercase = true;
} else if (Character.isLowerCase(nowChar)) {