Do not report jar: URLs as jar://file:...

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin 2013-10-26 15:47:51 -05:00
parent a2feec0bab
commit 002b0db43a

View File

@ -42,7 +42,7 @@ public class Handler extends URLStreamHandler {
("protocol " + file.getProtocol() + " not yet supported");
}
url.set("jar", "", -1, s, null);
url.set("jar", null, -1, s, null);
}
private static class MyJarURLConnection extends JarURLConnection {