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 515DCEC25 for ; Wed, 29 May 2013 14:57:01 +0000 (UTC) Received: (qmail 6968 invoked by uid 500); 29 May 2013 14:57:01 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 6862 invoked by uid 500); 29 May 2013 14:57:00 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 6840 invoked by uid 99); 29 May 2013 14:57:00 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 May 2013 14:57:00 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 05C3489CC13; Wed, 29 May 2013 14:56:59 +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 Date: Wed, 29 May 2013 14:57:00 -0000 Message-Id: In-Reply-To: <4dc16493abbc4c489973b5ff502604de@git.apache.org> References: <4dc16493abbc4c489973b5ff502604de@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] 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/eedbf67b Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/eedbf67b Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/eedbf67b Branch: refs/heads/2.8.x Commit: eedbf67bf94455fd5b7484b9b2abaa53299617c0 Parents: 2df66a7 Author: Andrew Grieve Authored: Wed May 29 10:56:23 2013 -0400 Committer: Andrew Grieve Committed: Wed May 29 10:56:54 2013 -0400 ---------------------------------------------------------------------- lib/common/plugin/device.js | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-js/blob/eedbf67b/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;