Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BD2EA10F2A for ; Mon, 23 Sep 2013 16:51:48 +0000 (UTC) Received: (qmail 73036 invoked by uid 500); 23 Sep 2013 16:51:48 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 72722 invoked by uid 500); 23 Sep 2013 16:51:47 -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 72390 invoked by uid 99); 23 Sep 2013 16:51:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Sep 2013 16:51:47 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of aharui@adobe.com designates 64.18.1.25 as permitted sender) Received: from [64.18.1.25] (HELO exprod6og110.obsmtp.com) (64.18.1.25) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Sep 2013 16:51:40 +0000 Received: from outbound-smtp-1.corp.adobe.com ([192.150.11.134]) by exprod6ob110.postini.com ([64.18.5.12]) with SMTP ID DSNKUkBxhnUfFKp8tV7vQO11DKTyAVGxtpF4@postini.com; Mon, 23 Sep 2013 09:51:19 PDT Received: from inner-relay-2.corp.adobe.com ([153.32.1.52]) by outbound-smtp-1.corp.adobe.com (8.12.10/8.12.10) with ESMTP id r8NGlfiH021258; Mon, 23 Sep 2013 09:47:41 -0700 (PDT) Received: from nacas01.corp.adobe.com (nacas01.corp.adobe.com [10.8.189.99]) by inner-relay-2.corp.adobe.com (8.12.10/8.12.10) with ESMTP id r8NGoeP0003697; Mon, 23 Sep 2013 09:51:17 -0700 (PDT) Received: from NAMBX02.corp.adobe.com ([10.8.127.96]) by nacas01.corp.adobe.com ([10.8.189.99]) with mapi; Mon, 23 Sep 2013 09:51:14 -0700 From: Alex Harui To: "dev@flex.apache.org" , "commits@flex.apache.org" Date: Mon, 23 Sep 2013 09:51:12 -0700 Subject: Re: [2/5] git commit: [flex-sdk] [refs/heads/develop] - FLEX-33731: solves 'access of possibly undefined property' that pops up when trying to compile 'experimental.swc' with Falcon. Not sure if this is a valid difference between the old compiler and F... Thread-Topic: [2/5] git commit: [flex-sdk] [refs/heads/develop] - FLEX-33731: solves 'access of possibly undefined property' that pops up when trying to compile 'experimental.swc' with Falcon. Not sure if this is a valid difference between the old compiler and F... Thread-Index: Ac64fR1G4QoRa5XJQxezA+AQDQ5j5A== Message-ID: In-Reply-To: <875e0f39c0564c47bacb726860a5666c@git.apache.org> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: user-agent: Microsoft-MacOutlook/14.3.6.130613 acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org Hmm, not so sure about this one. Why is this code not necessary? On 9/23/13 7:31 AM, "erikdebruin@apache.org" wrote: >FLEX-33731: solves 'access of possibly undefined property' that pops up >when trying to compile 'experimental.swc' with Falcon. Not sure if this >is a valid difference between the old compiler and Falcon, or if I'm just >working around an issue that needs fixin' > >Signed-off-by: Erik de Bruin > > >Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo >Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/638cc670 >Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/638cc670 >Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/638cc670 > >Branch: refs/heads/develop >Commit: 638cc670bd9505798dd7fbe7add7593198ec0220 >Parents: b53c294 >Author: Erik de Bruin >Authored: Mon Sep 23 15:30:43 2013 +0200 >Committer: Erik de Bruin >Committed: Mon Sep 23 15:30:43 2013 +0200 > >---------------------------------------------------------------------- > .../projects/experimental/src/spark/containers/DeferredGroup.as | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >---------------------------------------------------------------------- > > >http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/638cc670/frameworks/p >rojects/experimental/src/spark/containers/DeferredGroup.as >---------------------------------------------------------------------- >diff --git=20 >a/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as >b/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as >index 94658b6..1bb6553 100644 >---=20 >a/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as >+++=20 >b/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as >@@ -955,8 +955,8 @@ package spark.containers > // see https://bugs.adobe.com/jira/browse/SDK-25601 > // https://bugs.adobe.com/jira/browse/SDK-25333 > throw new Error( "You cannot use an IGraphicElement in a >DeferredGroup, all elements must extend UIComponent" ); >- numGraphicElements++; >- addingGraphicElementChild(element as IGraphicElement); >+ //numGraphicElements++; >+ //addingGraphicElementChild(element as IGraphicElement); > invalidateDisplayObjectOrdering(); > } =20 > else >