mirror of
https://github.com/corda/corda.git
synced 2025-06-13 12:48:18 +00:00
clean up Field.get() and Field.set() implementations
This commit is contained in:
@ -27,6 +27,10 @@ public final class Class <T> {
|
||||
return new String(name, 0, name.length - 1, false);
|
||||
}
|
||||
|
||||
public Object[] staticTable() {
|
||||
return staticTable;
|
||||
}
|
||||
|
||||
public static Class forName(String name) throws ClassNotFoundException {
|
||||
return forName
|
||||
(name, true, Method.getCaller().getDeclaringClass().getClassLoader());
|
||||
|
Reference in New Issue
Block a user