Skip to content

Commit

Permalink
fix reconstruction of internal type name
Browse files Browse the repository at this point in the history
  • Loading branch information
darkv committed Feb 23, 2017
1 parent 6672c5f commit 99a9232
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void nodeDidParse(ERXRestRequestNode node) {
else {
String type = ERXRestNameRegistry.registry().internalNameForExternalName(externalType);
if (_underscoreNames) {
type = ERXStringUtilities.camelCaseToUnderscore(type, false);
type = ERXStringUtilities.underscoreToCamelCase(type, true);
}
node.setType(type);
}
Expand Down

0 comments on commit 99a9232

Please sign in to comment.