mirror of https://github.com/apache/lucene.git
LUCENE-5207: Remove useless check
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene5207@1523324 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e6c0692d4b
commit
48bcf86367
|
@ -276,7 +276,7 @@ public class JavascriptCompiler {
|
|||
}
|
||||
|
||||
int arity = method.getParameterTypes().length;
|
||||
if (arguments != arity && arity != -1) {
|
||||
if (arguments != arity) {
|
||||
throw new IllegalArgumentException("Expected (" + arity + ") arguments for method call (" +
|
||||
call + "), but found (" + arguments + ").");
|
||||
}
|
||||
|
@ -331,7 +331,6 @@ public class JavascriptCompiler {
|
|||
} else {
|
||||
methodVisitor.visitLdcInsn(index);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue