From 474c4eec6af82d40505014b66e1f48a005d73899 Mon Sep 17 00:00:00 2001 From: Andreas Beeker Date: Sat, 25 Jan 2014 21:56:08 +0000 Subject: [PATCH] jdk 5 compiler doesn't support overwrite for interfaces ... 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 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/java/org/apache/poi/ss/formula/functions/Countifs.java b/src/java/org/apache/poi/ss/formula/functions/Countifs.java index 8fdb4249c..95982fe67 100644 --- a/src/java/org/apache/poi/ss/formula/functions/Countifs.java +++ b/src/java/org/apache/poi/ss/formula/functions/Countifs.java @@ -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) {