This is an automated email from the ASF dual-hosted git repository. andy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/jena.git
commit 5ec0dc5606f28cba4997659985980099ee6e1d7b Author: Andy Seaborne <[email protected]> AuthorDate: Mon Jan 27 18:26:33 2025 +0000 Remove used FactoryRDF member --- .../main/java/org/apache/jena/riot/lang/rdfxml/rrx/ParserRRX_SAX.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/jena-arq/src/main/java/org/apache/jena/riot/lang/rdfxml/rrx/ParserRRX_SAX.java b/jena-arq/src/main/java/org/apache/jena/riot/lang/rdfxml/rrx/ParserRRX_SAX.java index 30daf48700..6225282a89 100644 --- a/jena-arq/src/main/java/org/apache/jena/riot/lang/rdfxml/rrx/ParserRRX_SAX.java +++ b/jena-arq/src/main/java/org/apache/jena/riot/lang/rdfxml/rrx/ParserRRX_SAX.java @@ -42,7 +42,6 @@ import org.apache.jena.irix.IRIx; import org.apache.jena.riot.RiotException; import org.apache.jena.riot.lang.rdfxml.RDFXMLParseException; import org.apache.jena.riot.out.NodeFmtLib; -import org.apache.jena.riot.system.FactoryRDF; import org.apache.jena.riot.system.ParserProfile; import org.apache.jena.riot.system.StreamRDF; import org.apache.jena.sparql.util.Context; @@ -382,7 +381,7 @@ class ParserRRX_SAX // ---- Parser Setup private final ParserProfile parserProfile; - private final FactoryRDF factory; + // private final FactoryRDF factory; private final Context context; private final org.apache.jena.riot.system.ErrorHandler errorHandler; private final String initialXmlBase; @@ -497,7 +496,6 @@ class ParserRRX_SAX // Debug this.parserProfile = parserProfile; - this.factory = parserProfile.getFactorRDF(); this.errorHandler = parserProfile.getErrorHandler(); this.context = context; this.initialXmlBase = xmlBase;
