Skip to content

Commit 06a5b6a

Browse files
committed
解决github#12 问题
1 parent e0065c4 commit 06a5b6a

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
@@ -124,7 +124,7 @@ public static boolean isLowercaseAlpha(char c) {
124124
}
125125

126126
public static char toUpperAscii(char c) {
127-
if (isUppercaseAlpha(c)) {
127+
if (isLowercaseAlpha(c)) {
128128
c -= (char) 0x20;
129129
}
130130
return c;

0 commit comments

Comments
 (0)