aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2014-01-25 21:56:08 +0000
committerAndreas Beeker <kiwiwings@apache.org>2014-01-25 21:56:08 +0000
commita6736fda98f2e8318b36997ffd941c5e454f7e66 (patch)
tree31cc820964882e859b45e6d0b6074741f9c9ef3f /src/java
parent4405461d5be549c2471f7bd3166902c736c1dfb5 (diff)
downloadpoi-a6736fda98f2e8318b36997ffd941c5e454f7e66.tar.gz
poi-a6736fda98f2e8318b36997ffd941c5e454f7e66.zip
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
Diffstat (limited to 'src/java')
-rw-r--r--src/java/org/apache/poi/ss/formula/functions/Countifs.java1
1 files changed, 0 insertions, 1 deletions
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 8fdb4249c8..95982fe676 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) {