Browse Source

bug 59881: fix spelling; patch from Patrick Zimmermann

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753298 13f79535-47bb-0310-9956-ffa450edef68
pull/35/head
Javen O'Neal 8 years ago
parent
commit
ebbcd10034
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/java/org/apache/poi/ss/formula/functions/DStarRunner.java

+ 2
- 2
src/java/org/apache/poi/ss/formula/functions/DStarRunner.java View File

@@ -340,7 +340,7 @@ public final class DStarRunner implements Function3Arg {
}
else if(condition instanceof NumericValueEval) {
double conditionNumber = ((NumericValueEval)condition).getNumberValue();
Double valueNumber = getNumerFromValueEval(value);
Double valueNumber = getNumberFromValueEval(value);
if(valueNumber == null) {
return false;
}
@@ -405,7 +405,7 @@ public final class DStarRunner implements Function3Arg {
return false; // Can not be reached.
}
private static Double getNumerFromValueEval(ValueEval value) {
private static Double getNumberFromValueEval(ValueEval value) {
if(value instanceof NumericValueEval) {
return ((NumericValueEval)value).getNumberValue();
}

Loading…
Cancel
Save