mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
fix Classpath 0.98 compatibility issues
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user