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 c0d4ddcd4e5d2ad81ad1642577405a06d2c760e5
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jan 4 15:53:29 2026 -0500

    Javadoc
    
    Add an empty line before a Javadoc comment
---
 .../src/main/java/org/apache/commons/rdf/rdf4j/RDF4J.java              | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/commons-rdf-rdf4j/src/main/java/org/apache/commons/rdf/rdf4j/RDF4J.java 
b/commons-rdf-rdf4j/src/main/java/org/apache/commons/rdf/rdf4j/RDF4J.java
index 8a7f8894..7f976ed5 100644
--- a/commons-rdf-rdf4j/src/main/java/org/apache/commons/rdf/rdf4j/RDF4J.java
+++ b/commons-rdf-rdf4j/src/main/java/org/apache/commons/rdf/rdf4j/RDF4J.java
@@ -107,10 +107,12 @@ public final class RDF4J implements RDF {
      * Enumerates options.
      */
     public enum Option {
+
         /**
          * The Graph/Dataset should include any inferred statements
          */
         includeInferred,
+
         /**
          * The graph/dataset should handle {@link Repository#init()} (if
          * needed) and {@link Repository#shutDown()} on {@link Graph#close()} /
@@ -307,6 +309,7 @@ public final class RDF4J implements RDF {
      */
     public RDF4JGraph asGraph(final Repository repository, final Set<? extends 
BlankNodeOrIRI> contexts, final Option... option) {
         final EnumSet<Option> opts = optionSet(option);
+
         /** NOTE: asValue() deliberately CAN handle {@code null} */
         final Resource[] resources = contexts.stream().map(g -> (Resource) 
asValue(g)).toArray(Resource[]::new);
         return 
RDF4J.createRepositoryGraphImpl(Objects.requireNonNull(repository),

Reply via email to