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: 7d7e276e2a [formerly 9541c93640] [formerly 0b2839fd43] [formerly 4621271329 [formerly 0b2839fd43 [formerly 792255325dd584238c47f53d5cf1d642465b53d6]]]
Former-commit-id: 4621271329
Former-commit-id: 0783e1b2908b365b45911f9fff3604f64d2ddbc5 [formerly 9ad045d141]
Former-commit-id: 282ec3b45f
This commit is contained in:
Everett Kladstrup 2013-05-29 17:14:29 -05:00
parent cad451315d
commit f78c5c3640
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 ");