OpenJDK / jdk / jdk
changeset 56433:c5b80da6b561
8231431: JAOTC issues with JAR path containing spaces
Reviewed-by: kvn
author | bobv |
---|---|
date | Fri, 27 Sep 2019 18:27:42 +0000 |
parents | 693c1eb29b8d |
children | a819c684964b |
files | src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/FileSupport.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/FileSupport.java Fri Sep 27 12:20:14 2019 -0700 +++ b/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/FileSupport.java Fri Sep 27 18:27:42 2019 +0000 @@ -59,7 +59,7 @@ try { String name = path.toAbsolutePath().toString(); name = name.replace('\\', '/'); - return new URI("jar:file:///" + name + "!/"); + return new URI("jar:file", null, "///" + name + "!/", null); } catch (URISyntaxException e) { throw new InternalError(e); }