Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 8770A200B5D for ; Sun, 7 Aug 2016 12:21:55 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 861B5160A87; Sun, 7 Aug 2016 10:21:55 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 01607160A6B for ; Sun, 7 Aug 2016 12:21:54 +0200 (CEST) Received: (qmail 2048 invoked by uid 500); 7 Aug 2016 10:21:54 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 2040 invoked by uid 99); 7 Aug 2016 10:21:54 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Aug 2016 10:21:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1CD13E2C1A; Sun, 7 Aug 2016 10:21:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: yishayw@apache.org To: commits@flex.apache.org Message-Id: <37478983e24f4342847d253923da7843@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-asjs] [refs/heads/refactor-sprite] - Make the gettter get. Date: Sun, 7 Aug 2016 10:21:54 +0000 (UTC) archived-at: Sun, 07 Aug 2016 10:21:55 -0000 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 Authored: Sun Aug 7 13:21:49 2016 +0300 Committer: yishayw 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;