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 d1dc2cfb16a84597bdda0e94a89724f4c6880111 Author: Andy Seaborne <[email protected]> AuthorDate: Sun Jan 19 12:57:09 2025 +0000 Comments in SPARQLQueryProcessor --- .../java/org/apache/jena/fuseki/servlets/SPARQLQueryProcessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQLQueryProcessor.java b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQLQueryProcessor.java index 7f33b65bf4..84f4d9fd1b 100644 --- a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQLQueryProcessor.java +++ b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQLQueryProcessor.java @@ -271,7 +271,7 @@ public abstract class SPARQLQueryProcessor extends ActionService ServletOps.errorBadRequest("Error: \n" + queryString + "\n" + msg); } - // Assumes finished whole thing by end of sendResult. + // Assumes finished whole thing by end of sendResults. try { action.beginRead(); Pair<DatasetGraph, Query> p = decideDataset(action, query, queryStringLog); @@ -282,7 +282,7 @@ public abstract class SPARQLQueryProcessor extends ActionService try ( QueryExec qExec = createQueryExec(action, q, dataset); ) { QueryExecResult result = executeQuery(action, qExec, query, queryStringLog); - // Deals with exceptions itself. + // Deals with response exceptions itself. sendResults(action, result, query.getPrologue()); } }
