We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a97d41 commit 324b286Copy full SHA for 324b286
1 file changed
core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/AbstractRDFParser.java
@@ -298,12 +298,12 @@ public DatatypeHandling datatypeHandling() {
298
}
299
300
/**
301
- * Parses and normalizes the supplied URI-string and sets it as the base URI for resolving relative URIs.
+ * Parses the supplied URI-string and sets it as the base URI for resolving relative URIs.
302
*/
303
protected void setBaseURI(String uriSpec) {
304
- // Store normalized base URI
+ // Store base URI
305
if (this.baseURI == null || !this.baseURI.toString().equals(uriSpec)) {
306
- this.baseURI = ParsedIRI.create(uriSpec).normalize();
+ this.baseURI = ParsedIRI.create(uriSpec);
307
308
309
0 commit comments