Skip to content

Commit

Permalink
[kotlin] parcelize is now stable (OpenAPITools#4003)
Browse files Browse the repository at this point in the history
  • Loading branch information
4brunu authored and Jesse Michael committed Oct 3, 2019
1 parent 4d70124 commit bac6f2d
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -413,14 +413,6 @@ public void processOpts() {

if (additionalProperties.containsKey(CodegenConstants.PARCELIZE_MODELS)) {
this.setParcelizeModels(Boolean.valueOf((String) additionalProperties.get(CodegenConstants.PARCELIZE_MODELS)));
LOGGER.info(CodegenConstants.PARCELIZE_MODELS + " depends on the android framework and " +
"experimental parcelize feature. Make sure your build applies the android plugin:\n" +
"apply plugin: 'com.android.library' OR apply plugin: 'com.android.application'.\n" +
"and enables the experimental features:\n" +
"androidExtensions {\n" +
" experimental = true\n" +
"}"
);
} else {
additionalProperties.put(CodegenConstants.PARCELIZE_MODELS, parcelizeModels);
}
Expand Down

0 comments on commit bac6f2d

Please # to comment.