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 08728200B6F for ; Wed, 24 Aug 2016 17:10:19 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 06FC5160AC5; Wed, 24 Aug 2016 15:10:19 +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 7E47D160AC1 for ; Wed, 24 Aug 2016 17:10:18 +0200 (CEST) Received: (qmail 40149 invoked by uid 500); 24 Aug 2016 15:10:17 -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 40128 invoked by uid 99); 24 Aug 2016 15:10:17 -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; Wed, 24 Aug 2016 15:10:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8CF8DDF965; Wed, 24 Aug 2016 15:10:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Date: Wed, 24 Aug 2016 15:10:20 -0000 Message-Id: <7ae118575e124e11a2112b8b5aece4ec@git.apache.org> In-Reply-To: <64837286b320446ca98b1ab01594d870@git.apache.org> References: <64837286b320446ca98b1ab01594d870@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [4/4] git commit: [flex-asjs] [refs/heads/develop] - fix error found by nonfunction test archived-at: Wed, 24 Aug 2016 15:10:19 -0000 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/develop Commit: 6d4521d9afc382fda800c002f541610dc353b328 Parents: 19f790d Author: Alex Harui Authored: Wed Aug 24 08:09:03 2016 -0700 Committer: Alex Harui 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; } } }