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 3bd91f0d9ec9369181f3592f3c74beb1b4c88b90 Author: Andy Seaborne <[email protected]> AuthorDate: Mon Jul 13 16:01:49 2026 +0100 Tidy javadoc --- jena-arq/src/main/java/org/apache/jena/riot/lang/LabelToNode.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jena-arq/src/main/java/org/apache/jena/riot/lang/LabelToNode.java b/jena-arq/src/main/java/org/apache/jena/riot/lang/LabelToNode.java index 821db3d8a1..2a3033c0d5 100644 --- a/jena-arq/src/main/java/org/apache/jena/riot/lang/LabelToNode.java +++ b/jena-arq/src/main/java/org/apache/jena/riot/lang/LabelToNode.java @@ -49,7 +49,8 @@ public class LabelToNode extends MapWithScope<String, Node, Node> { return new LabelToNode(new FixedScopePolicy(), nodeAllocatorHash()); } /** - * Allocation from a single scope; just the label matters. Use this policy if repeated runs must give identical allocations + * Allocation from a single scope; just the label matters. + * Use this policy if repeated runs must give identical allocations * @param seed Seed */ public static LabelToNode createScopeByDocumentHash(UUID seed) @@ -61,7 +62,7 @@ public class LabelToNode extends MapWithScope<String, Node, Node> * blank node allocation style but the map can grow to arbitrary size. * <p> * This was the policy up to Jena 2.10.0 but it occasionally ran into problems at - * very large scale because it generates and remembers a new UUIDs for new each + * very large scale because it generates and remembers a new UUID for new each * blank node. The policy changed to {@link #createScopeByDocumentHash} which * calculates the blank node label needed without needing to retain previous * allocations.
