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/08/25 15:32:57 UTC

[49/50] [abbrv] git commit: [flex-asjs] [refs/heads/spark] - fix error found by nonfunction test

fix error found by nonfunction test


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

Branch: refs/heads/spark
Commit: 6d4521d9afc382fda800c002f541610dc353b328
Parents: 19f790d
Author: Alex Harui <ah...@apache.org>
Authored: Wed Aug 24 08:09:03 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Aug 24 08:10:15 2016 -0700

----------------------------------------------------------------------
 .../CreateJS/src/main/flex/org/apache/flex/createjs/Application.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6d4521d9/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/Application.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/Application.as b/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/Application.as
index db85a4a..4113dea 100644
--- a/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/Application.as
+++ b/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/Application.as
@@ -392,7 +392,7 @@ package org.apache.flex.createjs
 		 */
 		public function get numElements():int
 		{
-			return stage.numChildren();
+			return stage.numChildren;
 		}
 	}
 }