mirror of
https://github.com/corda/corda.git
synced 2025-06-18 15:18:16 +00:00
provide default implementation for ClassLoader.reallyFindLoadedClass
This is a non-standard method, so we shouldn't expect subclasses to implement it.
This commit is contained in:
@ -54,7 +54,9 @@ public abstract class ClassLoader {
|
|||||||
throw new ClassNotFoundException();
|
throw new ClassNotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected abstract Class reallyFindLoadedClass(String name);
|
protected Class reallyFindLoadedClass(String name) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
protected final Class findLoadedClass(String name) {
|
protected final Class findLoadedClass(String name) {
|
||||||
return reallyFindLoadedClass(name);
|
return reallyFindLoadedClass(name);
|
||||||
|
Reference in New Issue
Block a user