You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by yi...@apache.org on 2016/08/07 10:21:54 UTC

git commit: [flex-asjs] [refs/heads/refactor-sprite] - Make the gettter get.

Repository: flex-asjs
Updated Branches:
  refs/heads/refactor-sprite 022acc15f -> 9268cf7c9


Make the gettter get.


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

Branch: refs/heads/refactor-sprite
Commit: 9268cf7c96ed89d9619041de3c282580f7f53264
Parents: 022acc1
Author: yishayw <yi...@hotmail.com>
Authored: Sun Aug 7 13:21:49 2016 +0300
Committer: yishayw <yi...@hotmail.com>
Committed: Sun Aug 7 13:21:49 2016 +0300

----------------------------------------------------------------------
 .../Core/src/main/flex/org/apache/flex/core/ContainerBase.as       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/9268cf7c/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ContainerBase.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ContainerBase.as b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ContainerBase.as
index f687856..047b635 100644
--- a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ContainerBase.as
+++ b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ContainerBase.as
@@ -217,7 +217,7 @@ package org.apache.flex.core
 		/**
 		 *  @private
 		 */
-		override public function numElements():int
+		override public function get numElements():int
 		{
 			var contentView:IParent = view as IParent;
 			return contentView != null ? contentView.numElements : super.numElements;