Default memory model will not remove (partially) reified statements
-------------------------------------------------------------------
Key: JENA-223
URL: https://issues.apache.org/jira/browse/JENA-223
Project: Apache Jena
Issue Type: Bug
Components: Jena
Affects Versions: Jena 2.7.0
Reporter: Damian Steer
>From antiguru on IRC:
Model m = ModelFactory.createDefaultModel();
Resource r = m.createResource("http://example.com/a");
r.addProperty(RDF.object, "test1"); // or predicate or subject
m.removeAll(r, null, null);
System.err.println(m.size()); // => 1
Works (returns 0) with:
ModelFactory.createMemModelMaker(ReificationStyle.Minimal).createDefaultModel();
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira