Commit e46b54a2 by Tom Tromey Committed by Tom Tromey

URLClassLoader.java (findClass): Code source for a class from a jar is not necessarily a jar: URL.

	* java/net/URLClassLoader.java (findClass): Code source for a
	class from a jar is not necessarily a jar: URL.

From-SVN: r57214
parent 85341ddd
2002-09-16 Tom Tromey <tromey@redhat.com>
* java/net/URLClassLoader.java (findClass): Code source for a
class from a jar is not necessarily a jar: URL.
2002-09-16 Michael Koch <konqueror@gmx.de>
* java/lang/AssertionError.java:
......
......@@ -119,7 +119,7 @@ public class URLClassLoader extends SecureClassLoader
for (int i = 0; i < urls.length; i++)
{
// Convert a Jar File URL into a Jar URL is possible.
// Convert a Jar File URL into a Jar URL if possible.
URL u = jarFileize(urls[i]);
path.addElement (u);
......@@ -266,7 +266,7 @@ public class URLClassLoader extends SecureClassLoader
int i = u.indexOf ('!');
if (i >= 0)
u = u.substring (0, i);
url = new URL("jar", "", u);
url = new URL(u);
source = new CodeSource(url, certificates);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment