Javadoc updates, and fix warning

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1695593 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2015-08-12 18:03:52 +00:00
parent 6d46fc382f
commit 940b5fc449

View File

@ -29,11 +29,12 @@ import org.apache.poi.ss.formula.eval.StringEval;
import org.apache.poi.ss.formula.eval.ValueEval; import org.apache.poi.ss.formula.eval.ValueEval;
/** /**
* @author Amol S. Deshmukh < amolweb at ya hoo dot com > * Implementation of the various ISxxx Logical Functions, which
* @author Josh Micich * take a single expression argument, and return True or False.
*/ */
public abstract class LogicalFunction extends Fixed1ArgFunction { public abstract class LogicalFunction extends Fixed1ArgFunction {
@SuppressWarnings("unused")
public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval arg0) { public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval arg0) {
ValueEval ve; ValueEval ve;
try { try {