Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.ql/src/org/eclipse/equinox/p2/ql/QL.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.ql/src/org/eclipse/equinox/p2/ql/QL.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ql/src/org/eclipse/equinox/p2/ql/QL.java b/bundles/org.eclipse.equinox.p2.ql/src/org/eclipse/equinox/p2/ql/QL.java
index 7d34a8b9c..d3f0a911b 100644
--- a/bundles/org.eclipse.equinox.p2.ql/src/org/eclipse/equinox/p2/ql/QL.java
+++ b/bundles/org.eclipse.equinox.p2.ql/src/org/eclipse/equinox/p2/ql/QL.java
@@ -12,8 +12,6 @@ package org.eclipse.equinox.p2.ql;
import java.util.Iterator;
import org.eclipse.equinox.internal.p2.ql.QueryContext;
-import org.eclipse.equinox.internal.p2.ql.expression.QLFactory;
-import org.eclipse.equinox.internal.p2.ql.parser.QLParser;
import org.eclipse.equinox.p2.query.IQueryable;
/**
@@ -21,22 +19,6 @@ import org.eclipse.equinox.p2.query.IQueryable;
*/
public abstract class QL {
/**
- * Returns the default expression factory.
- * @return the default expression factory.
- */
- public static IQLFactory getFactory() {
- return QLFactory.INSTANCE;
- }
-
- /**
- * Creates a new instance of the default expression parser.
- * @return the new parser.
- */
- public static IQLParser newParser() {
- return new QLParser(getFactory());
- }
-
- /**
* Creates a query context based on the given queryable
* @param queryable The queryable to use for the creation of the context
* @return A new context

Back to the top