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:0b2839fd43
[formerly 792255325dd584238c47f53d5cf1d642465b53d6] Former-commit-id:4621271329
This commit is contained in:
parent
4eb7d951e4
commit
9ad045d141
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -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 ");
|
||||
|
|
Loading…
Add table
Reference in a new issue