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:
Uwe Schindler 2013-09-14 21:03:43 +00:00
parent e6c0692d4b
commit 48bcf86367
1 changed files with 1 additions and 2 deletions

View File

@ -276,7 +276,7 @@ public class JavascriptCompiler {
} }
int arity = method.getParameterTypes().length; int arity = method.getParameterTypes().length;
if (arguments != arity && arity != -1) { if (arguments != arity) {
throw new IllegalArgumentException("Expected (" + arity + ") arguments for method call (" + throw new IllegalArgumentException("Expected (" + arity + ") arguments for method call (" +
call + "), but found (" + arguments + ")."); call + "), but found (" + arguments + ").");
} }
@ -331,7 +331,6 @@ public class JavascriptCompiler {
} else { } else {
methodVisitor.visitLdcInsn(index); methodVisitor.visitLdcInsn(index);
} }
break; break;
} }