Skip to content

Commit

Permalink
[kotlin] parcelize is now stable (#4003)
Browse files Browse the repository at this point in the history
  • Loading branch information
4brunu authored and wing328 committed Oct 1, 2019
1 parent 7a95c9e commit 775d96c
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 775d96c

Please sign in to comment.