diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-11-16 09:50:39 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-11-16 09:50:39 +0000 |
commit | 422a09c940ffd43bc5cf0a749ad363730e51a79c (patch) | |
tree | 378e03a0434ee688158a520b1af8b3625ed8301a | |
parent | c9ca793c44d93165196037c787d3fef11e899a83 (diff) | |
download | poi-422a09c940ffd43bc5cf0a749ad363730e51a79c.tar.gz poi-422a09c940ffd43bc5cf0a749ad363730e51a79c.zip |
javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895084 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java b/poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java index 79aa8dc374..d34cc2ade2 100644 --- a/poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java +++ b/poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java @@ -626,7 +626,7 @@ public final class WorkbookEvaluator { value = dereferenceResult(evaluationResult, ec.getRowIndex(), ec.getColumnIndex()); } if (value == BlankEval.instance) { - // Note Excel behaviour here. A blank final final value is converted to zero. + // Note Excel behaviour here. A blank final value is converted to zero. return NumberEval.ZERO; // Formulas _never_ evaluate to blank. If a formula appears to have evaluated to // blank, the actual value is empty string. This can be verified with ISBLANK(). @@ -652,7 +652,7 @@ public final class WorkbookEvaluator { return e.getErrorEval(); } if (value == BlankEval.instance) { - // Note Excel behaviour here. A blank final final value is converted to zero. + // Note Excel behaviour here. A blank final value is converted to zero. return NumberEval.ZERO; // Formulas _never_ evaluate to blank. If a formula appears to have evaluated to // blank, the actual value is empty string. This can be verified with ISBLANK(). |