Fixed the overloader

This commit is contained in:
TomyLobo 2013-09-21 18:16:36 +02:00
parent cabced11a7
commit aef3b0024a

View File

@ -78,6 +78,10 @@ public final class Functions {
return false;
}
if (this.method.getParameterTypes().length != args.length) { // TODO: optimize
return false;
}
int accum = 0;
for (RValue argument : args) {
accum <<= 2;