Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2010-03-18 02:32:12 +0000
committerPascal Rapicault2010-03-18 02:32:12 +0000
commit9505629690850cc09a41e14f2e2a321342d23ec0 (patch)
treef9510db4d8ba81da0f9165a5219030bc60a02585 /bundles
parent84bd6c19bf8294e336d19a8936ee01c661bf7dc6 (diff)
downloadrt.equinox.p2-9505629690850cc09a41e14f2e2a321342d23ec0.tar.gz
rt.equinox.p2-9505629690850cc09a41e14f2e2a321342d23ec0.tar.xz
rt.equinox.p2-9505629690850cc09a41e14f2e2a321342d23ec0.zip
Bug 306128 - Projector depends on concrete type InstallableUnit
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.p2.director/src/org/eclipse/equinox/internal/p2/director/Projector.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.director/src/org/eclipse/equinox/internal/p2/director/Projector.java b/bundles/org.eclipse.equinox.p2.director/src/org/eclipse/equinox/internal/p2/director/Projector.java
index 561541875..1b16a88ce 100644
--- a/bundles/org.eclipse.equinox.p2.director/src/org/eclipse/equinox/internal/p2/director/Projector.java
+++ b/bundles/org.eclipse.equinox.p2.director/src/org/eclipse/equinox/internal/p2/director/Projector.java
@@ -221,7 +221,7 @@ public class Projector {
if (newRoots.isEmpty()) {
transitiveClosure = CollectionUtils.emptySet();
} else {
- IQueryable<IInstallableUnit> queryable = new Slicer(picker, selectionContext, false).slice(newRoots.toArray(new InstallableUnit[newRoots.size()]), new NullProgressMonitor());
+ IQueryable<IInstallableUnit> queryable = new Slicer(picker, selectionContext, false).slice(newRoots.toArray(new IInstallableUnit[newRoots.size()]), new NullProgressMonitor());
if (queryable == null) {
transitiveClosure = CollectionUtils.emptySet();
} else {

Back to the top