garydgregory commented on code in PR #328: URL: https://github.com/apache/commons-rdf/pull/328#discussion_r2084532863
########## commons-rdf-api/src/main/java/org/apache/commons/rdf/api/Graph.java: ########## @@ -321,5 +321,4 @@ default Iterable<Triple> iterate(final BlankNodeOrIRI subject, final IRI predica * @since 0.3.0-incubating */ Stream<? extends Triple> stream(BlankNodeOrIRI subject, IRI predicate, RDFTerm object); - Review Comment: Please remove style change from the PR. ########## commons-rdf-api/src/test/java/org/apache/commons/rdf/api/DummyGraphTest.java: ########## @@ -83,5 +83,4 @@ public void testStreamFiltered() throws Exception { graph.stream(new DummyIRI(1), new DummyIRI(2), new DummyIRI(3)).findAny().get()); assertFalse(graph.stream(new DummyIRI(0), new DummyIRI(0), new DummyIRI(0)).findAny().isPresent()); } - Review Comment: Please remove style change from the PR. ########## commons-rdf-api/src/main/java/org/apache/commons/rdf/api/GraphLike.java: ########## @@ -102,5 +102,4 @@ public interface GraphLike<T extends TripleLike> { * @return A {@link Stream} of {@link TripleLike} statements. */ Stream<? extends T> stream(); - Review Comment: Please remove style change from the PR. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org