3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-12-25 02:20:07 +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;
}
if (this.method.getParameterTypes().length != args.length) { // TODO: optimize
return false;
}
int accum = 0;
for (RValue argument : args) {
accum <<= 2;