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 2015/05/24 08:45:58 UTC

[2/2] git commit: [flex-asjs] [refs/heads/develop] - forgot 'this'

forgot 'this'


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

Branch: refs/heads/develop
Commit: 5bc08dcf2af13303886f2d67eaa0e49851bc9209
Parents: 7759087
Author: Alex Harui <ah...@apache.org>
Authored: Sat May 23 23:45:48 2015 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sat May 23 23:45:48 2015 -0700

----------------------------------------------------------------------
 .../projects/Network/js/src/org/apache/flex/net/HTTPService.js   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5bc08dcf/frameworks/projects/Network/js/src/org/apache/flex/net/HTTPService.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/Network/js/src/org/apache/flex/net/HTTPService.js b/frameworks/projects/Network/js/src/org/apache/flex/net/HTTPService.js
index e9be92d..8ac9ca5 100644
--- a/frameworks/projects/Network/js/src/org/apache/flex/net/HTTPService.js
+++ b/frameworks/projects/Network/js/src/org/apache/flex/net/HTTPService.js
@@ -200,8 +200,8 @@ Object.defineProperties(org_apache_flex_net_HTTPService.prototype, {
         /** @this {org_apache_flex_net_HTTPService} */
         get: function() {
             if (!this._json)
-              _json = JSON.parse(this.data);
-            return _json;
+              this._json = JSON.parse(this.data);
+            return this._json;
         }
     },
     /** @expose */