Skip to content

Commit

Permalink
Fixed bug in REST associations
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Apr 10, 2014
1 parent b78ae91 commit a7f3a81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public static String getSelectExpression(JavaClass<?> entity, String entityTable
{
if (name.startsWith("get"))
{
associationField = Strings.uncapitalize(name.substring(2));
associationField = Strings.uncapitalize(name.substring(3));
}
}
else if (member instanceof Field)
Expand Down

0 comments on commit a7f3a81

Please sign in to comment.