This is an automated email from the ASF dual-hosted git repository. andy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/jena.git
commit a43047546d7b10fc49e9f3a7c723e82b7efb4685 Author: Andy Seaborne <[email protected]> AuthorDate: Thu Nov 7 21:46:44 2024 +0000 Remove out-of-date comment --- .../java/org/apache/jena/sparql/exec/QueryExecMod.java | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/jena-arq/src/main/java/org/apache/jena/sparql/exec/QueryExecMod.java b/jena-arq/src/main/java/org/apache/jena/sparql/exec/QueryExecMod.java index ecfef4bd19..3dc8b36566 100644 --- a/jena-arq/src/main/java/org/apache/jena/sparql/exec/QueryExecMod.java +++ b/jena-arq/src/main/java/org/apache/jena/sparql/exec/QueryExecMod.java @@ -38,20 +38,6 @@ public interface QueryExecMod { return timeout(timeout, TimeUnit.MILLISECONDS); } - // [QExec] - // Remove these, leave only the explicit names? - // Legacy issues? - // QueryExecutionAdapter has the names and translation. -// public default QueryExecMod timeout(long timeout1, TimeUnit timeUnit1, long timeout2, TimeUnit timeUnit2) { -// initialTimeout(timeout1, timeUnit1); -// overallTimeout(timeout2, timeUnit2); -// return this; -// } -// -// public default QueryExecMod timeout(long timeout1, long timeout2) { -// return timeout(timeout1, TimeUnit.MILLISECONDS, timeout2, TimeUnit.MILLISECONDS); -// } - public QueryExecMod initialTimeout(long timeout, TimeUnit timeUnit); public QueryExecMod overallTimeout(long timeout, TimeUnit timeUnit);
