mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
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
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user