From a126dae03226f31df63af84dfc8b6eadaf050297 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sat, 27 Jun 2020 13:08:51 +0000 Subject: [PATCH] update deprecation version git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1879268 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/poi/hssf/record/FormulaRecord.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/java/org/apache/poi/hssf/record/FormulaRecord.java b/src/java/org/apache/poi/hssf/record/FormulaRecord.java index 1593220a24..e7ec130a8c 100644 --- a/src/java/org/apache/poi/hssf/record/FormulaRecord.java +++ b/src/java/org/apache/poi/hssf/record/FormulaRecord.java @@ -121,9 +121,10 @@ public final class FormulaRecord extends CellRecord { } /** - * @deprecated POI 5.0.0, will be removed in 5.0, use getCachedResultTypeEnum until switch to enum is fully done + * @deprecated POI 5.0.0, will be removed in 6.0, use getCachedResultTypeEnum until switch to enum is fully done */ @Deprecated + @Removal(version = "6.0.0") public int getCachedResultType() { if (specialCachedValue == null) { return CellType.NUMERIC.getCode();