You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2013/06/11 01:04:40 UTC

[07/16] js commit: [all] [CB-2200] Remove deprecated device.name field.

[all] [CB-2200] Remove deprecated device.name field.


Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/0fa84989
Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/0fa84989
Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/0fa84989

Branch: refs/heads/3.0.0
Commit: 0fa8498995bda9c85495ff71321b03a9603ea1d3
Parents: 76065a1
Author: Andrew Grieve <ag...@chromium.org>
Authored: Wed May 29 10:56:23 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed May 29 10:56:23 2013 -0400

----------------------------------------------------------------------
 lib/common/plugin/device.js | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/0fa84989/lib/common/plugin/device.js
----------------------------------------------------------------------
diff --git a/lib/common/plugin/device.js b/lib/common/plugin/device.js
index 73e9de9..2b377d8 100644
--- a/lib/common/plugin/device.js
+++ b/lib/common/plugin/device.js
@@ -36,7 +36,6 @@ function Device() {
     this.available = false;
     this.platform = null;
     this.version = null;
-    this.name = null;
     this.uuid = null;
     this.cordova = null;
     this.model = null;
@@ -52,7 +51,6 @@ function Device() {
             me.available = true;
             me.platform = info.platform;
             me.version = info.version;
-            me.name = info.name;
             me.uuid = info.uuid;
             me.cordova = buildLabel;
             me.model = info.model;