Skip to content

Commit 4307683

Browse files
committed
Merge pull request !4 from ptma/master
2 parents 0ccf4da + dfd9433 commit 4307683

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/tk/mybatis/mapper/util/StringUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public static String camelhumpToUnderline(String str) {
9292
for (int i = 0; i < size; i++) {
9393
c = chars[i];
9494
if (isUppercaseAlpha(c)) {
95-
sb.append('_').append(toLowerAscii(c));
95+
sb.append('_').append(c);
9696
} else {
9797
sb.append(toUpperAscii(c));
9898
}

0 commit comments

Comments
 (0)