Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hallgren2010-02-19 22:46:40 +0000
committerThomas Hallgren2010-02-19 22:46:40 +0000
commit3a38ea838308bd6743b26cf6557076dbb31a2e11 (patch)
treee06dc5237390931f4745a4abd46c55fb715a5db7 /bundles/org.eclipse.equinox.p2.repository.tools/src_ant
parentfe8721a60306de05a7015f4b010a7ee520e48fab (diff)
downloadrt.equinox.p2-3a38ea838308bd6743b26cf6557076dbb31a2e11.tar.gz
rt.equinox.p2-3a38ea838308bd6743b26cf6557076dbb31a2e11.tar.xz
rt.equinox.p2-3a38ea838308bd6743b26cf6557076dbb31a2e11.zip
303383 : We don't need both QLMatchQuery and ExpressionQuery and some things related to bug 302201 : Unify the two query approaches used in p2
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.repository.tools/src_ant')
-rw-r--r--bundles/org.eclipse.equinox.p2.repository.tools/src_ant/org/eclipse/equinox/p2/internal/repository/tools/tasks/IUDescription.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository.tools/src_ant/org/eclipse/equinox/p2/internal/repository/tools/tasks/IUDescription.java b/bundles/org.eclipse.equinox.p2.repository.tools/src_ant/org/eclipse/equinox/p2/internal/repository/tools/tasks/IUDescription.java
index d38685e70..787da352e 100644
--- a/bundles/org.eclipse.equinox.p2.repository.tools/src_ant/org/eclipse/equinox/p2/internal/repository/tools/tasks/IUDescription.java
+++ b/bundles/org.eclipse.equinox.p2.repository.tools/src_ant/org/eclipse/equinox/p2/internal/repository/tools/tasks/IUDescription.java
@@ -126,7 +126,7 @@ public class IUDescription extends DataType {
return queries.get(0);
@SuppressWarnings("unchecked")
- IQuery<IInstallableUnit> query = new PipedQuery<IInstallableUnit>(queries.toArray(new IQuery[queries.size()]));
+ IQuery<IInstallableUnit> query = PipedQuery.createPipe(queries.toArray(new IQuery[queries.size()]));
return query;
}

Back to the top