We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0ccf4da + dfd9433 commit 4307683Copy full SHA for 4307683
src/main/java/tk/mybatis/mapper/util/StringUtil.java
@@ -92,7 +92,7 @@ public static String camelhumpToUnderline(String str) {
92
for (int i = 0; i < size; i++) {
93
c = chars[i];
94
if (isUppercaseAlpha(c)) {
95
- sb.append('_').append(toLowerAscii(c));
+ sb.append('_').append(c);
96
} else {
97
sb.append(toUpperAscii(c));
98
}
0 commit comments