]> source.dussan.org Git - poi.git/commitdiff
Remove a long-deprecated constructor
authorNick Burch <nick@apache.org>
Fri, 31 Jul 2015 20:38:36 +0000 (20:38 +0000)
committerNick Burch <nick@apache.org>
Fri, 31 Jul 2015 20:38:36 +0000 (20:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1693646 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFFormulaEvaluator.java

index 180bd96859d6dd75dfc670fd6b4b93486e648031..e9eaf77c015b1b350dcdb65cb322149c2b0c448d 100644 (file)
@@ -50,17 +50,6 @@ public class XSSFFormulaEvaluator implements FormulaEvaluator, WorkbookEvaluator
     public XSSFFormulaEvaluator(XSSFWorkbook workbook) {
         this(workbook, null, null);
     }
-    /**
-     * @param stabilityClassifier used to optimise caching performance. Pass <code>null</code>
-     * for the (conservative) assumption that any cell may have its definition changed after
-     * evaluation begins.
-     * @deprecated (Sep 2009) (reduce overloading) use {@link #create(XSSFWorkbook, org.apache.poi.ss.formula.IStabilityClassifier, org.apache.poi.ss.formula.udf.UDFFinder)}
-     */
-    @Deprecated
-    public XSSFFormulaEvaluator(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier) {
-        _bookEvaluator = new WorkbookEvaluator(XSSFEvaluationWorkbook.create(workbook), stabilityClassifier, null);
-        _book = workbook;
-    }
     private XSSFFormulaEvaluator(XSSFWorkbook workbook, IStabilityClassifier stabilityClassifier, UDFFinder udfFinder) {
         _bookEvaluator = new WorkbookEvaluator(XSSFEvaluationWorkbook.create(workbook), stabilityClassifier, udfFinder);
         _book = workbook;