aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2020-12-08 23:38:42 +0000
committerPJ Fanning <fanningpj@apache.org>2020-12-08 23:38:42 +0000
commit4be65ef93a6b89e39138bf953243f41231d4f9cb (patch)
tree8e9174e8162fa18ee31a8dca8f73f67ee07bec9f /src
parente4d6fc0a7fd8cc68f2ca56123df15569e15880d0 (diff)
downloadpoi-4be65ef93a6b89e39138bf953243f41231d4f9cb.tar.gz
poi-4be65ef93a6b89e39138bf953243f41231d4f9cb.zip
remove some deprecated code
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884224 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/java/org/apache/poi/ss/usermodel/FormulaEvaluator.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/java/org/apache/poi/ss/usermodel/FormulaEvaluator.java b/src/java/org/apache/poi/ss/usermodel/FormulaEvaluator.java
index 860755d15d..776c022d14 100644
--- a/src/java/org/apache/poi/ss/usermodel/FormulaEvaluator.java
+++ b/src/java/org/apache/poi/ss/usermodel/FormulaEvaluator.java
@@ -103,32 +103,6 @@ public interface FormulaEvaluator {
* Note: the cell's type remains as CellType.FORMULA however.
*/
CellType evaluateFormulaCell(Cell cell);
-
- /**
- * If cell contains formula, it evaluates the formula,
- * and saves the result of the formula. The cell
- * remains as a formula cell.
- * Else if cell does not contain formula, this method leaves
- * the cell unchanged.
- * Note that the type of the formula result is returned,
- * so you know what kind of value is also stored with
- * the formula.
- * <pre>
- * CellType evaluatedCellType = evaluator.evaluateFormulaCell(cell);
- * </pre>
- * Be aware that your cell will hold both the formula,
- * and the result. If you want the cell replaced with
- * the result of the formula, use {@link #evaluateInCell(Cell)}
- * @param cell The cell to evaluate
- * @return The type of the formula result, i.e. -1 if the cell is not a formula,
- * or one of {@link CellType#NUMERIC}, {@link CellType#STRING},
- * {@link CellType#BOOLEAN}, {@link CellType#ERROR}
- * Note: the cell's type remains as CellType.FORMULA however.
- * @deprecated use <code>evaluateFormulaCell(cell)</code>
- */
- @Deprecated
- @Removal(version = "4.2")
- CellType evaluateFormulaCellEnum(Cell cell);
/**
* If cell contains formula, it evaluates the formula, and