Author: kiwiwings
Date: Sun Feb 11 20:45:38 2018
New Revision: 1823894

URL: http://svn.apache.org/viewvc?rev=1823894&view=rev
Log:
#61947 - Remove deprecated classes (POI 4.0.0)

Modified:
    poi/site/src/documentation/content/xdocs/status.xml
    poi/trunk/src/java/org/apache/poi/ss/formula/udf/UDFFinder.java

Modified: poi/site/src/documentation/content/xdocs/status.xml
URL: 
http://svn.apache.org/viewvc/poi/site/src/documentation/content/xdocs/status.xml?rev=1823894&r1=1823893&r2=1823894&view=diff
==============================================================================
--- poi/site/src/documentation/content/xdocs/status.xml (original)
+++ poi/site/src/documentation/content/xdocs/status.xml Sun Feb 11 20:45:38 2018
@@ -68,7 +68,7 @@
         <summary-item>Provide new ooxml-schemas-1.4.jar</summary-item>
       </summary>
       <actions>
-        <action dev="PD" type="add" fixes-bug="62096" module="SL 
Common,HSLF,XSLF">Add support for tabstops</action>
+        <action dev="PD" type="add" fixes-bug="61947" module="POI 
Overall">Remove deprecated classes (POI 4.0.0)</action>
         <action dev="PD" type="add" fixes-bug="55954" module="XWPF">Add 
functions to get, set, remove outer borders for tables</action>
         <action dev="PD" type="add" fixes-bug="github-72" module="XDDF">Define 
XDDF user model for shape properties to be shared between XSLF, XSSF and 
XWPF</action>
         <action dev="PD" type="add" fixes-bug="61543" 
breaks-compatibility="true" module="XSSF">Do not fail with "part already 
exists" when tables are created/removed</action>

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/udf/UDFFinder.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/udf/UDFFinder.java?rev=1823894&r1=1823893&r2=1823894&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/udf/UDFFinder.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/udf/UDFFinder.java Sun Feb 11 
20:45:38 2018
@@ -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.
      *



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

Reply via email to