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
commit 2fb1355c9bed0a160ca6ad4b338751db0031c3a4 Author: Andy Seaborne <[email protected]> AuthorDate: Sun May 10 13:47:59 2026 +0100 Fix javadoc --- .../java/org/apache/jena/sparql/engine/http/QueryExceptionHTTP.java | 6 +++--- jena-arq/src/main/java/org/apache/jena/system/GList.java | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/jena-arq/src/main/java/org/apache/jena/sparql/engine/http/QueryExceptionHTTP.java b/jena-arq/src/main/java/org/apache/jena/sparql/engine/http/QueryExceptionHTTP.java index 126857ddda..5f2b83654b 100644 --- a/jena-arq/src/main/java/org/apache/jena/sparql/engine/http/QueryExceptionHTTP.java +++ b/jena-arq/src/main/java/org/apache/jena/sparql/engine/http/QueryExceptionHTTP.java @@ -63,7 +63,7 @@ public class QueryExceptionHTTP extends QueryException } } - /** @deprecated Use {@ink #wrap(HttpException)} */ + /** @deprecated Use {@link #rewrap(HttpException)} */ @Deprecated public QueryExceptionHTTP(int responseCode, String messageBody, final HttpException ex) { super(ex.getMessage(), ex.getCause()); @@ -80,7 +80,7 @@ public class QueryExceptionHTTP extends QueryException /** The message for the reason for this exception * @return message - * @deprecate Use {@link #getResponseBody} + * @deprecated Use {@link #getResponseBody} */ @Deprecated public String getResponseMessage() { return responseBody; } @@ -91,7 +91,7 @@ public class QueryExceptionHTTP extends QueryException /** The response for this exception if available from HTTP * @return response or {@code null} if no HTTP response was received - * @deprecate Use {@link #getResponseBody} + * @deprecated Use {@link #getResponseBody} */ @Deprecated public String getResponse() { return getResponseBody(); } diff --git a/jena-arq/src/main/java/org/apache/jena/system/GList.java b/jena-arq/src/main/java/org/apache/jena/system/GList.java index a6ac246971..90fd011583 100644 --- a/jena-arq/src/main/java/org/apache/jena/system/GList.java +++ b/jena-arq/src/main/java/org/apache/jena/system/GList.java @@ -58,8 +58,9 @@ import org.apache.jena.vocabulary.RDF; * List arising from parsing Turtle or TriG syntax for lists will be cycle-free. * <p> * <b>This class is <em>not</em> public API</b>. - * - * @see GraphList - uses a findable abstaction ({@link GNode}to work on a graph or lists of triples. + * <p> + * See also {@link GraphList} which uses a "findable" abstraction in combination + * with {@link GNode} to work on a graph or lists of triples. */ public class GList {
