]> source.dussan.org Git - poi.git/commitdiff
Javadoc updates, and fix warning
authorNick Burch <nick@apache.org>
Wed, 12 Aug 2015 18:03:52 +0000 (18:03 +0000)
committerNick Burch <nick@apache.org>
Wed, 12 Aug 2015 18:03:52 +0000 (18:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1695593 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/formula/functions/LogicalFunction.java

index c4b3e6718752fda9737495be2f403e5ceec3676f..298de19264bc8f0ef25efb56bc3bb1be6fe06edb 100644 (file)
@@ -29,12 +29,13 @@ import org.apache.poi.ss.formula.eval.StringEval;
 import org.apache.poi.ss.formula.eval.ValueEval;
 
 /**
- * @author Amol S. Deshmukh &lt; amolweb at ya hoo dot com &gt;
- * @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);