mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
Merge branch 'win64' into gnu
Conflicts: makefile src/compile-x86.S src/x86.S src/x86.cpp
This commit is contained in:
@ -176,6 +176,8 @@ public final class Class <T> implements Type, GenericDeclaration {
|
||||
|
||||
private Method findMethod(String name, Class[] parameterTypes) {
|
||||
if (methodTable != null) {
|
||||
if (parameterTypes == null)
|
||||
parameterTypes = new Class[0];
|
||||
for (int i = 0; i < methodTable.length; ++i) {
|
||||
if (methodTable[i].getName().equals(name)
|
||||
&& match(parameterTypes, methodTable[i].getParameterTypes()))
|
||||
|
Reference in New Issue
Block a user