Hmm, not so sure about this one. Why is this code not necessary? On 9/23/13 7:31 AM, "[email protected]" <[email protected]> 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 <[email protected]> > > >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 <[email protected]> >Authored: Mon Sep 23 15:30:43 2013 +0200 >Committer: Erik de Bruin <[email protected]> >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 >a/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as >b/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as >index 94658b6..1bb6553 100644 >--- >a/frameworks/projects/experimental/src/spark/containers/DeferredGroup.as >+++ >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(); > } > else >
