fix graph uri in the example of construct quads Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/e398c4e7 Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/e398c4e7 Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/e398c4e7
Branch: refs/heads/JENA-491-construct-quads Commit: e398c4e73e6ebb907c1b9acd584f965050cbc4ca Parents: 44d8010 Author: confidencesun <[email protected]> Authored: Mon Jul 27 08:54:40 2015 +0800 Committer: confidencesun <[email protected]> Committed: Mon Jul 27 08:54:40 2015 +0800 ---------------------------------------------------------------------- .../arq/examples/constructquads/ExampleConstructQuads.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/e398c4e7/jena-arq/src-examples/arq/examples/constructquads/ExampleConstructQuads.java ---------------------------------------------------------------------- diff --git a/jena-arq/src-examples/arq/examples/constructquads/ExampleConstructQuads.java b/jena-arq/src-examples/arq/examples/constructquads/ExampleConstructQuads.java index 887f7b5..ae724ec 100644 --- a/jena-arq/src-examples/arq/examples/constructquads/ExampleConstructQuads.java +++ b/jena-arq/src-examples/arq/examples/constructquads/ExampleConstructQuads.java @@ -54,7 +54,7 @@ public class ExampleConstructQuads { Property p1 = model.createProperty("http://eg.com/p1"); Resource o1 = model.createResource("http://eg.com/o1"); model1.add(s1, p1, o1); - dataset.addNamedModel("<http://eg.com/g1>", model1); + dataset.addNamedModel("http://eg.com/g1", model1); // construct named graph
