Author: andy
Date: Sun Jul 27 15:39:21 2014
New Revision: 1613808
URL: http://svn.apache.org/r1613808
Log:
Remove deprecated functions
Modified:
jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/query/QueryExecutionFactory.java
Modified:
jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/query/QueryExecutionFactory.java
URL:
http://svn.apache.org/viewvc/jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/query/QueryExecutionFactory.java?rev=1613808&r1=1613807&r2=1613808&view=diff
==============================================================================
---
jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/query/QueryExecutionFactory.java
(original)
+++
jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/query/QueryExecutionFactory.java
Sun Jul 27 15:39:21 2014
@@ -20,7 +20,7 @@ package com.hp.hpl.jena.query;
import java.util.List ;
import org.apache.jena.atlas.logging.Log ;
-import org.apache.jena.atlas.web.auth.HttpAuthenticator;
+import org.apache.jena.atlas.web.auth.HttpAuthenticator ;
import com.hp.hpl.jena.rdf.model.Model ;
import com.hp.hpl.jena.sparql.core.DatasetGraph ;
@@ -33,7 +33,6 @@ import com.hp.hpl.jena.sparql.engine.bin
import com.hp.hpl.jena.sparql.engine.http.QueryEngineHTTP ;
import com.hp.hpl.jena.sparql.syntax.Element ;
import com.hp.hpl.jena.sparql.util.Context ;
-import com.hp.hpl.jena.util.FileManager ;
/** Place to make QueryExecution objects from Query objects or a string. */
@@ -118,36 +117,6 @@ public class QueryExecutionFactory
return make(makeQuery(queryStr, syntax), dataset) ;
}
- /** Create a QueryExecution : the file manager will be used to load
- * URIs in the query decription.
- *
- * @param queryStr Query string
- * @param fm FileManager
- * @return QueryExecution
- * @deprecated Setting the FileManger has no effect. Use {@linkplain
#create(String)}
- */
- @Deprecated
- static public QueryExecution create(String queryStr, FileManager fm)
- {
- return create(queryStr) ;
- }
-
- /** Create a QueryExecution : the file manager will be used to load
- * URIs in the query decription.
- *
- * @param queryStr Query string
- * @param syntax Syntax
- * @param fm FileManager
- * @return QueryExecution
- * @deprecated Setting the FileManger has no effect. Use {@linkplain
#create(String, Syntax)}
- */
- @Deprecated
- static public QueryExecution create(String queryStr, Syntax syntax,
FileManager fm)
- {
- checkArg(queryStr) ;
- return create(makeQuery(queryStr, syntax)) ;
- }
-
// ---------------- Query + Model
/** Create a QueryExecution to execute over the Model.