From: Nick Burch Date: Wed, 12 Aug 2015 18:03:52 +0000 (+0000) Subject: Javadoc updates, and fix warning X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=940b5fc449b01ce5c05508653999aeba704547a4;p=poi.git Javadoc updates, and fix warning git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1695593 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/poi/ss/formula/functions/LogicalFunction.java b/src/java/org/apache/poi/ss/formula/functions/LogicalFunction.java index c4b3e67187..298de19264 100644 --- a/src/java/org/apache/poi/ss/formula/functions/LogicalFunction.java +++ b/src/java/org/apache/poi/ss/formula/functions/LogicalFunction.java @@ -29,12 +29,13 @@ import org.apache.poi.ss.formula.eval.StringEval; import org.apache.poi.ss.formula.eval.ValueEval; /** - * @author Amol S. Deshmukh < amolweb at ya hoo dot com > - * @author Josh Micich + * Implementation of the various ISxxx Logical Functions, which + * take a single expression argument, and return True or False. */ public abstract class LogicalFunction extends Fixed1ArgFunction { - public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval arg0) { + @SuppressWarnings("unused") + public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval arg0) { ValueEval ve; try { ve = OperandResolver.getSingleValue(arg0, srcRowIndex, srcColumnIndex);