Updated Branches: refs/heads/develop f821d9e20 -> 5ef6cf03b
Tiny change to AsyncListView.as to avoid a Falcon compiler warning. This makes Falcon's frameworkSWC() test pass. Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/5ef6cf03 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/5ef6cf03 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/5ef6cf03 Branch: refs/heads/develop Commit: 5ef6cf03bc00ec409c76b5c6f618f5c98842f4de Parents: f821d9e Author: Gordon Smith <[email protected]> Authored: Tue Apr 2 21:14:04 2013 -0700 Committer: Gordon Smith <[email protected]> Committed: Tue Apr 2 21:14:04 2013 -0700 ---------------------------------------------------------------------- .../framework/src/mx/collections/AsyncListView.as | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5ef6cf03/frameworks/projects/framework/src/mx/collections/AsyncListView.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/framework/src/mx/collections/AsyncListView.as b/frameworks/projects/framework/src/mx/collections/AsyncListView.as index 336fe8e..fbc3901 100644 --- a/frameworks/projects/framework/src/mx/collections/AsyncListView.as +++ b/frameworks/projects/framework/src/mx/collections/AsyncListView.as @@ -834,10 +834,10 @@ public class AsyncListView extends OnDemandEventDispatcher implements IList * @playerversion AIR 1.1 * @productversion Apache Flex 4.10 */ - public function removeItem( item:Object ):Boolean + public function removeItem(item:Object):Boolean { - var item:Object = removeItemAt(getItemIndex(item)); - return item != null; + var _item:Object = removeItemAt(getItemIndex(item)); + return _item != null; } /**
