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 2014/10/02 00:35:05 UTC

[2/3] git commit: removed unused variables

removed unused variables


Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/71ca7122
Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/71ca7122
Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/71ca7122

Branch: refs/heads/master
Commit: 71ca7122ede6e5380cb01e1881fe7e9ac08dc16d
Parents: cc5cd56
Author: Steven Gill <st...@gmail.com>
Authored: Wed Oct 1 14:34:37 2014 -0700
Committer: Steven Gill <st...@gmail.com>
Committed: Wed Oct 1 14:34:37 2014 -0700

----------------------------------------------------------------------
 cordova-lib/src/plugman/uninstall.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/71ca7122/cordova-lib/src/plugman/uninstall.js
----------------------------------------------------------------------
diff --git a/cordova-lib/src/plugman/uninstall.js b/cordova-lib/src/plugman/uninstall.js
index 209e35f..fd02fe9 100644
--- a/cordova-lib/src/plugman/uninstall.js
+++ b/cordova-lib/src/plugman/uninstall.js
@@ -96,8 +96,7 @@ module.exports.uninstallPlugin = function(id, plugins_dir, options) {
         return Q();
     }
 
-    var xml_path  = path.join(plugin_dir, 'plugin.xml')
-      , plugin_et = xml_helpers.parseElementtreeSync(xml_path);
+   // var xml_path  = path.join(plugin_dir, 'plugin.xml'), plugin_et = xml_helpers.parseElementtreeSync(xml_path);
 
     var doDelete = function(id) {
         var plugin_dir = path.join(plugins_dir, id);