Skip to content

Commit

Permalink
eq
Browse files Browse the repository at this point in the history
  • Loading branch information
millotp committed Feb 13, 2023
1 parent 960d541 commit ac10423
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ public String toEnumVarName(String value, String datatype) {
case ">":
return "GT";
case "=":
return "EQUAL";
return "EQ";
case "<=":
return "LTE";
case ">=":
return "GTE";
case "!=":
return "NOTEQUAL";
return "NEQ";
}

if (!value.matches("[A-Z0-9_]+")) {
Expand Down

0 comments on commit ac10423

Please sign in to comment.