You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/11/14 22:22:41 UTC

git commit: [flex-falcon] [refs/heads/develop] - fix bug in TargetSettings

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 <ah...@apache.org>
Authored: Mon Nov 14 14:22:28 2016 -0800
Committer: Alex Harui <ah...@apache.org>
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