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


The following commit(s) were added to refs/heads/main by this push:
     new 25044b1952 GH-3022: Fix of compatibility forward of Service.exec
25044b1952 is described below

commit 25044b1952d26e76e3e7c0782e654809f00596de
Author: Claus Stadler <[email protected]>
AuthorDate: Wed Feb 19 17:10:56 2025 +0100

    GH-3022: Fix of compatibility forward of Service.exec
---
 jena-arq/src/main/java/org/apache/jena/sparql/service/ServiceExec.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/jena-arq/src/main/java/org/apache/jena/sparql/service/ServiceExec.java 
b/jena-arq/src/main/java/org/apache/jena/sparql/service/ServiceExec.java
index c9d41399ab..16476db523 100644
--- a/jena-arq/src/main/java/org/apache/jena/sparql/service/ServiceExec.java
+++ b/jena-arq/src/main/java/org/apache/jena/sparql/service/ServiceExec.java
@@ -39,7 +39,7 @@ public class ServiceExec {
      */
     @Deprecated(forRemoval = true, since = "5.4.0")
     public static QueryIterator exec(QueryIterator input, OpService opService, 
ExecutionContext execCxt) {
-        return exec(input, opService, execCxt);
+        return exec(opService, input, execCxt);
     }
 
     /**

Reply via email to