Pre Merge pull request !1073 from BookerLiu/fix/gen-camel-column

pull/1073/MERGE
BookerLiu 2025-12-02 06:57:41 +00:00 committed by Gitee
commit 935ee8ef2f
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions

View File

@ -598,11 +598,11 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils
{
return null;
}
s = s.toLowerCase();
if (s.indexOf(SEPARATOR) == -1)
{
return s;
}
s = s.toLowerCase();
StringBuilder sb = new StringBuilder(s.length());
boolean upperCase = false;
for (int i = 0; i < s.length(); i++)