You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by gt...@apache.org on 2013/01/29 03:34:41 UTC

[4/4] js commit: [FirefoxOS] removed unneeded return

Updated Branches:
  refs/heads/master dd45b3090 -> 349c6e1c8


[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/master
Commit: 349c6e1c8bcaf6f13af20010e04f6b03b5f4b0b7
Parents: 44c2a45
Author: Gord Tanner <gt...@gmail.com>
Authored: Mon Jan 28 21:28:29 2013 -0500
Committer: Gord Tanner <gt...@gmail.com>
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"};
     }
 };