We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd1002d commit 9f0efd1Copy full SHA for 9f0efd1
1 file changed
ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/DependencyManager.java
@@ -206,7 +206,9 @@ public static Set<BundleDescription> findRequirementsClosure(Collection<BundleDe
206
// to ensure it's added again below. In the subsequent
207
// processing this fragment's requirements will then also be
208
// considered (before it was discarded).
209
- closure.remove(hostWire.getProvider());
+ if (hostWire.getProviderWiring() != null) {
210
+ closure.remove(hostWire.getProvider());
211
+ }
212
}
213
214
0 commit comments