fix order of static initializers for now.  FalconJX will some day use a cinit()


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/075cac2b
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/075cac2b
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/075cac2b

Branch: refs/heads/spark
Commit: 075cac2b019e30f67ecfb99a18b85f46e55a6c7c
Parents: d0dc34f
Author: Alex Harui <aha...@apache.org>
Authored: Tue Aug 23 23:06:27 2016 -0700
Committer: Alex Harui <aha...@apache.org>
Committed: Tue Aug 23 23:06:27 2016 -0700

----------------------------------------------------------------------
 frameworks/projects/MX/src/main/flex/mx/binding/Binding.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/075cac2b/frameworks/projects/MX/src/main/flex/mx/binding/Binding.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/MX/src/main/flex/mx/binding/Binding.as 
b/frameworks/projects/MX/src/main/flex/mx/binding/Binding.as
index c19cced..e5ece14 100644
--- a/frameworks/projects/MX/src/main/flex/mx/binding/Binding.as
+++ b/frameworks/projects/MX/src/main/flex/mx/binding/Binding.as
@@ -41,7 +41,6 @@ public class Binding
     // Certain errors are normal during binding execution, so we swallow them.
     // 1507 - invalid null argument 
     // 2005 - argument error (null gets converted to 0) 
-    mx_internal static var allowedErrors:Object = generateAllowedErrors();
     mx_internal static function generateAllowedErrors():Object
     {
         var o:Object = {};
@@ -49,6 +48,7 @@ public class Binding
         o[2005] = 1;
         return o;
     }
+    mx_internal static var allowedErrors:Object = generateAllowedErrors();
     
     
//--------------------------------------------------------------------------
        //

Reply via email to