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
The following commit(s) were added to refs/heads/master by this push: new b607d6ca Javadoc @since tag should be after @return and @throws b607d6ca is described below commit b607d6caf08c91a9ae94547be9e7e2aa697accb9 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Mar 22 09:41:53 2025 -0400 Javadoc @since tag should be after @return and @throws --- commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Graph.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Graph.java b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Graph.java index e5c1ac5f..ea85e223 100644 --- a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Graph.java +++ b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Graph.java @@ -289,8 +289,8 @@ public interface Graph extends AutoCloseable, GraphLike<Triple> { * Stream methods if they detect a conflict while the Stream is active. * </p> * - * @since 0.3.0-incubating * @return A {@link Stream} over all of the triples in the graph + * @since 0.3.0-incubating */ @Override Stream<? extends Triple> stream(); @@ -311,7 +311,6 @@ public interface Graph extends AutoCloseable, GraphLike<Triple> { * Stream methods if they detect a conflict while the Stream is active. * </p> * - * @since 0.3.0-incubating * @param subject * The triple subject (null is a wildcard) * @param predicate @@ -319,6 +318,7 @@ public interface Graph extends AutoCloseable, GraphLike<Triple> { * @param object * The triple object (null is a wildcard) * @return A {@link Stream} over the matched triples. + * @since 0.3.0-incubating */ Stream<? extends Triple> stream(BlankNodeOrIRI subject, IRI predicate, RDFTerm object);