mirror of
https://github.com/corda/corda.git
synced 2025-01-21 03:55:00 +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:
parent
0c253c40a2
commit
69dc2026a1
@ -54,7 +54,9 @@ public abstract class ClassLoader {
|
||||
throw new ClassNotFoundException();
|
||||
}
|
||||
|
||||
protected abstract Class reallyFindLoadedClass(String name);
|
||||
protected Class reallyFindLoadedClass(String name) {
|
||||
return null;
|
||||
}
|
||||
|
||||
protected final Class findLoadedClass(String name) {
|
||||
return reallyFindLoadedClass(name);
|
||||
|
Loading…
Reference in New Issue
Block a user