You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/03/20 15:42:15 UTC

[royale-compiler] branch develop updated: .- Changed the default for allowSubclassOverrides to false and updated all the framework modules to add it, where it was needed.

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/develop by this push:
     new 77730db  .- Changed the default for allowSubclassOverrides to false and updated all the framework modules to add it, where it was needed.
     new 336102a  Merge pull request #125 from chrisdutz/develop
77730db is described below

commit 77730dbdeba8f275564bb6c3ccf195245d10c1d8
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Fri Mar 20 13:34:11 2020 +0100

    .- Changed the default for allowSubclassOverrides to false and updated all the framework modules to add it, where it was needed.
---
 royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseMojo.java b/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseMojo.java
index f1cf374..aa7f058 100644
--- a/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseMojo.java
+++ b/royale-maven-plugin/src/main/java/org/apache/royale/maven/BaseMojo.java
@@ -86,7 +86,7 @@ public abstract class BaseMojo
     protected boolean failOnCompilerWarnings = false;
 
     @Parameter
-    protected boolean allowSubclassOverrides = true;
+    protected boolean allowSubclassOverrides = false;
     
     @Parameter
     private Boolean includeLookupOnly = null;