You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by go...@apache.org on 2013/04/03 06:16:22 UTC

git commit: Tiny change to AsyncListView.as to avoid a Falcon compiler warning. This makes Falcon's frameworkSWC() test pass.

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 <go...@adobe.com>
Authored: Tue Apr 2 21:14:04 2013 -0700
Committer: Gordon Smith <go...@adobe.com>
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;
 	}
     
     /**