3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-12-26 02:50:06 +01:00

Fixed the overloader

Dieser Commit ist enthalten in:
TomyLobo 2013-09-21 18:16:36 +02:00
Ursprung cabced11a7
Commit aef3b0024a

Datei anzeigen

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