afs commented on code in PR #1774:
URL: https://github.com/apache/jena/pull/1774#discussion_r1122828730
##########
jena-core/src/main/java/org/apache/jena/rdfxml/xmlinput/RDFXMLReader.java:
##########
@@ -59,13 +62,28 @@ public class RDFXMLReader implements RDFReaderI,
ARPErrorNumbers {
static final int arpPropertiesURLLength = arpPropertiesURL.length();
+ private final boolean resolveInitialXmlBase;
+
/**
* Creates new JenaReader
*/
public RDFXMLReader() {
arpf = RDFXMLParser.create();
+ this.resolveInitialXmlBase = true;
+ }
+
+ /**
+ * Creates new JenaReader which does not resolve the XMLbase when parsing.
This
+ * is the original behaviour of RDFXMLReader but that has not been exposed
via
+ * RIOT; only directly creating an RDFXMLReader or running without RIOT
+ * (jena-arq) has had that behaviour.
Review Comment:
Changed to "(which is in jena-arq)" -- it's saying where RIOT come from.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]