]> source.dussan.org Git - poi.git/commitdiff
jdk 5 compiler doesn't support overwrite for interfaces ...
authorAndreas Beeker <kiwiwings@apache.org>
Sat, 25 Jan 2014 21:56:08 +0000 (21:56 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Sat, 25 Jan 2014 21:56:08 +0000 (21:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1561406 13f79535-47bb-0310-9956-ffa450edef68

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

index 8fdb4249c8f353b71f0b0e79a347f34abec4968a..95982fe67633b7e20e095e7fb648bbbea69ae7fe 100644 (file)
@@ -33,7 +33,6 @@ import org.apache.poi.ss.formula.eval.ValueEval;
 public class Countifs implements FreeRefFunction {
     public static final FreeRefFunction instance = new Countifs();
 
-    @Override
     public ValueEval evaluate(ValueEval[] args, OperationEvaluationContext ec) {
         Double result = null;
         if (args.length == 0 || args.length % 2 > 0) {