Repository: flex-falcon Updated Branches: refs/heads/develop cf9cc59b7 -> 3d3993f89
fix bug in TargetSettings Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/3d3993f8 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/3d3993f8 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/3d3993f8 Branch: refs/heads/develop Commit: 3d3993f8909f98f6d31f52e130995d9b34fcf68f Parents: cf9cc59 Author: Alex Harui <[email protected]> Authored: Mon Nov 14 14:22:28 2016 -0800 Committer: Alex Harui <[email protected]> Committed: Mon Nov 14 14:22:28 2016 -0800 ---------------------------------------------------------------------- .../org/apache/flex/compiler/internal/config/TargetSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3d3993f8/compiler/src/main/java/org/apache/flex/compiler/internal/config/TargetSettings.java ---------------------------------------------------------------------- diff --git a/compiler/src/main/java/org/apache/flex/compiler/internal/config/TargetSettings.java b/compiler/src/main/java/org/apache/flex/compiler/internal/config/TargetSettings.java index 1b2eb3a..33a5ff9 100644 --- a/compiler/src/main/java/org/apache/flex/compiler/internal/config/TargetSettings.java +++ b/compiler/src/main/java/org/apache/flex/compiler/internal/config/TargetSettings.java @@ -583,7 +583,7 @@ public class TargetSettings implements ITargetSettings @Override public boolean getAllowSubclassOverrides() { - return configuration.getCompilerMxmlChildrenAsData(); + return configuration.getCompilerAllowSubclassOverrides(); } @Override
