fix Classpath 0.98 compatibility issues

This commit is contained in:
Joel Dice
2009-12-22 21:34:04 -07:00
parent 30db38ebd6
commit f588a62ae3
6 changed files with 94 additions and 6 deletions

View File

@ -49,8 +49,10 @@ public abstract class ClassLoader {
throw new ClassNotFoundException();
}
protected Class findLoadedClass(String name) {
return null;
protected abstract Class reallyFindLoadedClass(String name);
protected final Class findLoadedClass(String name) {
return reallyFindLoadedClass(name);
}
public Class loadClass(String name) throws ClassNotFoundException {