Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 46F6618FCE for ; Sun, 24 May 2015 06:45:58 +0000 (UTC) Received: (qmail 18343 invoked by uid 500); 24 May 2015 06:45:58 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 18190 invoked by uid 500); 24 May 2015 06:45:58 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 18164 invoked by uid 99); 24 May 2015 06:45:58 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 May 2015 06:45:58 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id F1ED8E055E; Sun, 24 May 2015 06:45:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Date: Sun, 24 May 2015 06:45:58 -0000 Message-Id: In-Reply-To: <17f4de828a974aca9d82c5c07ddc4f88@git.apache.org> References: <17f4de828a974aca9d82c5c07ddc4f88@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [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 Authored: Sat May 23 23:45:48 2015 -0700 Committer: Alex Harui 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 */