aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2018-02-11 20:45:38 +0000
committerAndreas Beeker <kiwiwings@apache.org>2018-02-11 20:45:38 +0000
commitbf8c0a9f58bb21cdcd8ecebaaca4745d2760fef1 (patch)
tree3c957c91a5f78529b5ed4107dc57370dd599fd21 /src/java/org
parent9968e86b14188b43920f0ef28f68559e3dadf7be (diff)
downloadpoi-bf8c0a9f58bb21cdcd8ecebaaca4745d2760fef1.tar.gz
poi-bf8c0a9f58bb21cdcd8ecebaaca4745d2760fef1.zip
#61947 - Remove deprecated classes (POI 4.0.0)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1823894 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org')
-rw-r--r--src/java/org/apache/poi/ss/formula/udf/UDFFinder.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/java/org/apache/poi/ss/formula/udf/UDFFinder.java b/src/java/org/apache/poi/ss/formula/udf/UDFFinder.java
index a434756e93..28614498e8 100644
--- a/src/java/org/apache/poi/ss/formula/udf/UDFFinder.java
+++ b/src/java/org/apache/poi/ss/formula/udf/UDFFinder.java
@@ -17,23 +17,12 @@
package org.apache.poi.ss.formula.udf;
-import org.apache.poi.ss.formula.atp.AnalysisToolPak;
import org.apache.poi.ss.formula.functions.FreeRefFunction;
/**
* Common interface for "Add-in" libraries and user defined function libraries.
*/
public interface UDFFinder {
- // FIXME: Findbugs error: IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION
- /**
- * Default UDFFinder implementation
- *
- * @deprecated use AggregatingUDFFinder.DEFAULT instead, deprecated in POI 3.15,
- * scheduled for removable in POI 3.17
- */
- @Deprecated
- public static final UDFFinder DEFAULT = new AggregatingUDFFinder(AnalysisToolPak.instance);
-
/**
* Returns executor by specified name. Returns <code>null</code> if the function name is unknown.
*