Merge "Issue #2052 Fix FeatureExplorer feature comparison" into development

Former-commit-id: 3d6d6acb67bdd0a3d1e41a66873441686ed2c895
This commit is contained in:
Nate Jensen 2013-05-30 14:50:39 -05:00 committed by Gerrit Code Review
commit 4aa3657d1a
2 changed files with 1 additions and 1 deletions

View file

@ -188,7 +188,7 @@ public class FeatureExplorer {
plugin.getVersion());
try {
if (this.pluginLookupMap.containsKey(plugin.getId())
&& this.pluginLookupMap.get(plugin.getId()).equals(aFile)) {
&& !this.pluginLookupMap.get(plugin.getId()).equals(aFile)) {
StringBuilder stringBuilder = new StringBuilder("Plugin ");
stringBuilder.append(plugin.getId());
stringBuilder.append(" is in Feature ");