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 <[email protected]>
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;