changeset 42:89834669ad98

Fixed typo
author Andriy Petrus <apetrus@redhat.com>
date Wed, 11 Dec 2013 13:26:55 -0500
parents 2d3178148dd6
children 182c44d8a058
files src/com/redhat/thermostat/plugin/eclipse/model/PluginModel.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/com/redhat/thermostat/plugin/eclipse/model/PluginModel.java	Fri Dec 06 17:48:50 2013 -0500
+++ b/src/com/redhat/thermostat/plugin/eclipse/model/PluginModel.java	Wed Dec 11 13:26:55 2013 -0500
@@ -366,7 +366,7 @@
             nodeList = (NodeList) expr.evaluate(doc, XPathConstants.NODESET);
             
             for(int i = 0; i < nodeList.getLength(); i++){
-                expr = xpath.compile("//name");
+                expr = xpath.compile("//symbolic-name");
                 String extensionName = (String) expr.evaluate(nodeList.item(i), XPathConstants.STRING);
                 
                 expr  = xpath.compile("//version");