Github user ansell commented on a diff in the pull request: https://github.com/apache/incubator-commonsrdf/pull/25#discussion_r85235401 --- Diff: simple/src/main/java/org/apache/commons/rdf/simple/SimpleRDFTermFactory.java --- @@ -17,97 +17,54 @@ */ package org.apache.commons.rdf.simple; -import java.util.UUID; - import org.apache.commons.rdf.api.BlankNode; import org.apache.commons.rdf.api.BlankNodeOrIRI; -import org.apache.commons.rdf.api.Dataset; import org.apache.commons.rdf.api.Graph; import org.apache.commons.rdf.api.IRI; import org.apache.commons.rdf.api.Literal; -import org.apache.commons.rdf.api.Quad; import org.apache.commons.rdf.api.RDFTerm; import org.apache.commons.rdf.api.RDFTermFactory; import org.apache.commons.rdf.api.Triple; /** - * A simple implementation of RDFTermFactory. + * A Simple implementation of {@link RDFTermFactory} * <p> - * The {@link RDFTerm} and {@link Graph} instances created by this factory are - * simple in-memory Implementations that are not thread-safe or efficient, but - * which may be useful for testing and prototyping purposes. + * This class is <strong>deprecated</strong>, use instead {@link SimpleRDF}. */ +@Deprecated --- End diff -- Just remove this class, no need to add maintenance burden at 0.x releases.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---