-
-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
UNC paths are destroyed after calling the URI#resolve method:
Line 266 in f7d247b
| absoluteReferencedUrl = contextUrl.toURI().resolve(refUri).toURL(); |
Example:
final URI baseUri = new File("//SERVER/some/path").toURI();
System.out.println(baseUri); // -> file:////SERVER/some/path (UNC-Path)
final URI resolved = baseUri.resolve("file.json#");
System.out.println(resolved); // -> file:/SERVER/some/file.json# (no UNC-Path)Metadata
Metadata
Assignees
Labels
No labels