Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
liuzhihang committed Jun 8, 2021
2 parents 438ce27 + b647e1d commit 431916b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static String paramNameHandler(Settings settings, String jsonKey) {
for (int i = 1; i < split.length; i++) {
camelCased.append(split[i].substring(0, 1).toUpperCase()).append(split[i].substring(1));
}
return camelCased.toString();
return split[0] + camelCased;

}

Expand Down

0 comments on commit 431916b

Please sign in to comment.