Reported by @ebremer
Summary:
java.net.URI uri = new java.net.URI("http://mysite.net");
System.out.println(uri.resolve("picture.jpg"));
returns "http://mysite.netpicture.jpg"
This creates an issue with:
|
uri = uri.resolve(pathToResolve); |
where the erroneous URI created with URI.resolve() yields "@id" turning into blank nodes.
Reported by @ebremer
Summary:
returns "http://mysite.netpicture.jpg"
This creates an issue with:
jsonld-java/core/src/main/java/com/github/jsonldjava/utils/JsonLdUrl.java
Line 283 in 66012db
where the erroneous URI created with URI.resolve() yields "@id" turning into blank nodes.