Skip to content

Commit

Permalink
Merge pull request #9920 from mitchnull/issue-9918
Browse files Browse the repository at this point in the history
[issue-9918] set isNumeric for int32 types
  • Loading branch information
frantuma authored Dec 13, 2019
2 parents 250adec + 286a5e8 commit b930bb4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1705,6 +1705,7 @@ public CodegenProperty fromProperty(String name, Property p) {
if (p instanceof IntegerProperty) {
IntegerProperty sp = (IntegerProperty) p;
property.isInteger = true;
property.isNumeric = true;
if (sp.getEnum() != null) {
List<Integer> _enum = sp.getEnum();
property._enum = new ArrayList<String>();
Expand Down

0 comments on commit b930bb4

Please sign in to comment.