Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-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 F2478EA4B for ; Tue, 12 Feb 2013 19:33:11 +0000 (UTC) Received: (qmail 62945 invoked by uid 500); 12 Feb 2013 19:33:08 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 62903 invoked by uid 500); 12 Feb 2013 19:33:08 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 61996 invoked by uid 99); 12 Feb 2013 19:33:08 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Feb 2013 19:33:08 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id E471A516B1; Tue, 12 Feb 2013 19:33:07 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agrieve@apache.org To: commits@cordova.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [6/50] js commit: [FirefoxOS] removed unneeded return Message-Id: <20130212193307.E471A516B1@tyr.zones.apache.org> Date: Tue, 12 Feb 2013 19:33:07 +0000 (UTC) [FirefoxOS] removed unneeded return Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/349c6e1c Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/349c6e1c Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/349c6e1c Branch: refs/heads/symbolmapping Commit: 349c6e1c8bcaf6f13af20010e04f6b03b5f4b0b7 Parents: 44c2a45 Author: Gord Tanner Authored: Mon Jan 28 21:28:29 2013 -0500 Committer: Gord Tanner Committed: Mon Jan 28 21:33:50 2013 -0500 ---------------------------------------------------------------------- lib/b2g/plugin/b2g/network.js | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-js/blob/349c6e1c/lib/b2g/plugin/b2g/network.js ---------------------------------------------------------------------- diff --git a/lib/b2g/plugin/b2g/network.js b/lib/b2g/plugin/b2g/network.js index 9d3b218..f7e702b 100644 --- a/lib/b2g/plugin/b2g/network.js +++ b/lib/b2g/plugin/b2g/network.js @@ -24,6 +24,5 @@ var cordova = require('cordova'); module.exports = { getConnectionInfo: function (win, fail, args) { win("3G"); - return { "status": cordova.callbackStatus.OK, "message": "3G"}; } };