Issue #2052 Fix FeatureExplorer feature comparison

* fixes complaint when feature A includes features B and C
  which both include feature D.
  Used to get error that plugin X is in feature D and feature D
* Updated FeatureExplorer jar in build.edex to reflect change

Change-Id: Ifbd5957a33f9815143794d8d4a29a6e66ce275c7

Former-commit-id: 792255325dd584238c47f53d5cf1d642465b53d6
This commit is contained in:
Everett Kladstrup 2013-05-29 17:14:29 -05:00
parent bd9251eba0
commit 4621271329
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 ");