You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/12/23 08:41:48 UTC

[25/28] git commit: [flex-asjs] [refs/heads/develop] - wasn't using right variable

wasn't using right variable


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/77ab7f18
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/77ab7f18
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/77ab7f18

Branch: refs/heads/develop
Commit: 77ab7f18c64280a6e200529e5ccdf24ec880d6df
Parents: b908fbc
Author: Alex Harui <ah...@apache.org>
Authored: Mon Dec 22 10:05:29 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Dec 22 10:05:29 2014 -0800

----------------------------------------------------------------------
 .../src/org/apache/flex/net/dataConverters/LazyCollection.js       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/77ab7f18/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js b/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
index a277e1c..cb592b7 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
@@ -180,5 +180,5 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.getItemAt =
  */
 org.apache.flex.net.dataConverters.LazyCollection.prototype.get_length =
     function() {
-  return this.rawData ? this.rawData.length : 0;
+  return this.rawData_ ? this.rawData_.length : 0;
 };