Skip to content

Commit

Permalink
fix JS default ot ES6 (OpenAPITools#2084)
Browse files Browse the repository at this point in the history
  • Loading branch information
wing328 committed Feb 8, 2019
1 parent 6a93ff6 commit bfab6d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public void processOpts() {
if (additionalProperties.containsKey(USE_ES6)) {
setUseES6(convertPropertyToBooleanAndWriteBack(USE_ES6));
} else {
setUseES6(false); // default to ES5
setUseES6(true); // default to ES6
}
super.processOpts();

Expand Down

0 comments on commit bfab6d9

Please sign in to comment.