Skip to content

Commit

Permalink
if external type is lowercase we would have no match
Browse files Browse the repository at this point in the history
  • Loading branch information
darkv committed Apr 16, 2014
1 parent b4f7d5f commit dff8c78
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public FrontBaseTypes() {
}

public static int internalTypeForExternal(String externalType) {
externalType = externalType.toUpperCase();
if (externalType.equals("BOOLEAN"))
return FB_Boolean;
else if (externalType.equals("INTEGER") || externalType.equals("INT"))
Expand Down

0 comments on commit dff8c78

Please sign in to comment.