Editorial/javadoc. Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/c761b915 Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/c761b915 Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/c761b915
Branch: refs/heads/master Commit: c761b915a4058a0dfc497e8d04d0411cbad30d2d Parents: 6256efa Author: Andy Seaborne <[email protected]> Authored: Thu Feb 2 16:06:05 2017 +0000 Committer: Andy Seaborne <[email protected]> Committed: Wed Feb 8 09:36:15 2017 +0000 ---------------------------------------------------------------------- .../src/main/java/org/apache/jena/riot/system/RiotLib.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/c761b915/jena-arq/src/main/java/org/apache/jena/riot/system/RiotLib.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/main/java/org/apache/jena/riot/system/RiotLib.java b/jena-arq/src/main/java/org/apache/jena/riot/system/RiotLib.java index 8f1e893..e416975 100644 --- a/jena-arq/src/main/java/org/apache/jena/riot/system/RiotLib.java +++ b/jena-arq/src/main/java/org/apache/jena/riot/system/RiotLib.java @@ -181,15 +181,15 @@ public class RiotLib return new ParserProfileBase(prologue, handler, factoryRDF(labelToNode)) ; } - /** Create a new (notinfluenced by anything else) FactoryRDF + /** Create a new (not influenced by anything else) {@code FactoryRDF} * using the label to blank node scheme provided. */ public static FactoryRDF factoryRDF(LabelToNode labelMapping) { return new FactoryRDFCaching(FactoryRDFCaching.DftNodeCacheSize, labelMapping); } - /** Create a new (not influenced by anything else) FactoryRDF - * using the label to blank node scheme scope by this FactoryRDF. + /** Create a new (not influenced by anything else) {@code FactoryRDF} + * using the default label to blank node scheme. */ public static FactoryRDF factoryRDF() { return factoryRDF(SyntaxLabels.createLabelToNode());
