This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-rdf.git
commit 461c89cc3a9dd85e23dd5a9984d79e2234f01490 Author: Gary Gregory <[email protected]> AuthorDate: Thu Apr 17 15:26:19 2025 -0400 Fix Javadoc 24 error --- .../src/main/java/org/apache/commons/rdf/api/QuadLike.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/QuadLike.java b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/QuadLike.java index 25e7a7dc..82e59f74 100644 --- a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/QuadLike.java +++ b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/QuadLike.java @@ -29,11 +29,14 @@ import java.util.Optional; * required to be <em>immutable</em> or <em>thread-safe</em>. This interface can * also be used for <em>generalized quads</em> (e.g. a {@link BlankNode} as * predicate). + * </p> * <p> * Implementations should specialize which specific {@link RDFTerm} types they * return by overriding {@link #getSubject()}, {@link #getPredicate()}, * {@link #getObject()} and {@link #getGraphName()}. + * </p> * + * @param <G> Optional value type. * @since 0.3.0-incubating * @see Quad */ @@ -46,6 +49,7 @@ public interface QuadLike<G extends RDFTerm> extends TripleLike { * the graph name of this statement. If the graph name is not present,e.g. * the value is {@link Optional#empty()}, it indicates that this Quad is in * the default graph. + * </p> * * @return If {@link Optional#isPresent()}, the graph name of this quad, * otherwise {@link Optional#empty()}, indicating the default graph.
