Commit 6a5d24d7 by Tom Tromey Committed by Tom Tromey

ClassLoader.java (loadClass): Resolve class even if it was already found.

	* java/lang/ClassLoader.java (loadClass): Resolve class even if
	it was already found.

From-SVN: r97565
parent d4e1591f
2005-04-04 Tom Tromey <tromey@redhat.com> 2005-04-04 Tom Tromey <tromey@redhat.com>
* java/lang/ClassLoader.java (loadClass): Resolve class even if
it was already found.
2005-04-04 Tom Tromey <tromey@redhat.com>
* java/net/URL.java (DEFAULT_SEARCH_PATH): Added * java/net/URL.java (DEFAULT_SEARCH_PATH): Added
org.metastatic.jessie. org.metastatic.jessie.
......
...@@ -285,28 +285,28 @@ public abstract class ClassLoader ...@@ -285,28 +285,28 @@ public abstract class ClassLoader
{ {
// Have we already loaded this class? // Have we already loaded this class?
Class c = findLoadedClass(name); Class c = findLoadedClass(name);
if (c != null) if (c == null)
return c;
// Can the class be loaded by a parent?
try
{ {
if (parent == null) // Can the class be loaded by a parent?
try
{ {
c = VMClassLoader.loadClass(name, resolve); if (parent == null)
if (c != null) {
return c; c = VMClassLoader.loadClass(name, resolve);
if (c != null)
return c;
}
else
{
return parent.loadClass(name, resolve);
}
} }
else catch (ClassNotFoundException e)
{ {
return parent.loadClass(name, resolve);
} }
// Still not found, we have to do it ourself.
c = findClass(name);
} }
catch (ClassNotFoundException e)
{
}
// Still not found, we have to do it ourself.
c = findClass(name);
if (resolve) if (resolve)
resolveClass(c); resolveClass(c);
return c; return c;
......
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