Skip to content
This repository was archived by the owner on Jul 30, 2021. It is now read-only.

Commit 60c2aac

Browse files
Fix uncapitalize
1 parent c5e4323 commit 60c2aac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/querydsl/codegen/utils/StringUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static String capitalize(String str) {
2222
}
2323

2424
public static String uncapitalize(String str) {
25-
return str.substring(0, 1).toUpperCase() + str.substring(1);
25+
return str.substring(0, 1).toLowerCase() + str.substring(1);
2626
}
2727

2828
public static String escapeJava(String str) {

0 commit comments

Comments
 (0)