Author: nick
Date: Wed Aug 12 18:03:52 2015
New Revision: 1695593

URL: http://svn.apache.org/r1695593
Log:
Javadoc updates, and fix warning

Modified:
    poi/trunk/src/java/org/apache/poi/ss/formula/functions/LogicalFunction.java

Modified: 
poi/trunk/src/java/org/apache/poi/ss/formula/functions/LogicalFunction.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/functions/LogicalFunction.java?rev=1695593&r1=1695592&r2=1695593&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/functions/LogicalFunction.java 
(original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/functions/LogicalFunction.java 
Wed Aug 12 18:03:52 2015
@@ -29,12 +29,13 @@ import org.apache.poi.ss.formula.eval.St
 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);



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to