Skip to content

Commit

Permalink
Fix java enum imports and literals again
Browse files Browse the repository at this point in the history
  • Loading branch information
sorig committed Aug 10, 2016
1 parent 156eabb commit a4be802
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/meta/generator/targets/java.json
Expand Up @@ -4,7 +4,6 @@
"IncludeAllClasses": true,
"IncludeEnums": true,
"DependencyListElement": "import org.shogun.$typeName;",
"DependencyListElementEnum": "import static org.shogun.$typeName.$value;",
"DependencyListSeparator": "\n"
},
"Statement": "$statement;\n",
Expand Down Expand Up @@ -79,7 +78,7 @@
"MethodCall": "$object.$method($arguments)",
"StaticCall": "$typeName.$method($arguments)",
"Identifier": "$identifier",
"Enum":"$value"
"Enum":"$typeName.$value"
},
"Element": {
"Access": {
Expand Down

0 comments on commit a4be802

Please sign in to comment.