mirror of https://github.com/apache/poi.git
Remove unused local variable
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1648159 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9c41ad8b67
commit
96cfbb9cc5
|
@ -1040,13 +1040,11 @@ public final class FormulaParser {
|
|||
}
|
||||
|
||||
boolean missedPrevArg = true;
|
||||
int numArgs = 0;
|
||||
while (true) {
|
||||
SkipWhite();
|
||||
if (isArgumentDelimiter(look)) {
|
||||
if (missedPrevArg) {
|
||||
temp.add(new ParseNode(MissingArgPtg.instance));
|
||||
numArgs++;
|
||||
}
|
||||
if (look == ')') {
|
||||
break;
|
||||
|
@ -1056,7 +1054,6 @@ public final class FormulaParser {
|
|||
continue;
|
||||
}
|
||||
temp.add(comparisonExpression());
|
||||
numArgs++;
|
||||
missedPrevArg = false;
|
||||
SkipWhite();
|
||||
if (!isArgumentDelimiter(look)) {
|
||||
|
|
Loading…
Reference in New Issue