From 422a09c940ffd43bc5cf0a749ad363730e51a79c Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Tue, 16 Nov 2021 09:50:39 +0000 Subject: javadoc git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895084 13f79535-47bb-0310-9956-ffa450edef68 --- poi/src/main/java/org/apache/poi/ss/formula/WorkbookEvaluator.java | 4 ++-- 1 file 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(). -- cgit v1.2.3