This is an automated email from the ASF dual-hosted git repository.

afs 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 fbe7bfcb1e Fix javadoc (ActionExecLib)
fbe7bfcb1e is described below

commit fbe7bfcb1eb27b1ad67cd86089c3b981d468df98
Author: Andy Seaborne <[email protected]>
AuthorDate: Thu Jul 23 12:45:22 2026 +0100

    Fix javadoc (ActionExecLib)
---
 .../main/java/org/apache/jena/fuseki/servlets/ActionExecLib.java  | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git 
a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/ActionExecLib.java
 
b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/ActionExecLib.java
index d5eba96029..f5ecfc5d05 100644
--- 
a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/ActionExecLib.java
+++ 
b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/ActionExecLib.java
@@ -85,9 +85,7 @@ public class ActionExecLib {
      * for special case like {@link SPARQL_QueryGeneral} which directly holds 
the {@link ActionProcessor}
      * and {@link ServletProcessor} for administration actions.
      * <p>For execution choosing the processor from the data access point
-     * See {@link #execAction(HttpAction, Supplier)}
-     *
-     * @returns false if the ActionProcessor is not found.
+     * See {@link #execAction(HttpAction, Supplier)}.
      */
     public static void execAction(HttpAction action, ActionProcessor 
processor) {
         boolean b = execAction(action, ()->processor);
@@ -110,8 +108,8 @@ public class ActionExecLib {
      * servlet directly outside the Fuseki dispatch process ({@link 
ServletAction}
      * for special case like {@link SPARQL_QueryGeneral} which directly holds 
the {@link ActionProcessor}
      * and {@link ServletProcessor} for administration actions.
-     *
-     * @returns false if the ActionProcessor is not found.
+     * <p>
+     * Return false if the ActionProcessor is not found.
      */
     public static boolean execAction(HttpAction action, 
Supplier<ActionProcessor> processorSelector) {
         try {

Reply via email to