diff options
author | PJ Fanning <fanningpj@apache.org> | 2020-06-27 13:08:51 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2020-06-27 13:08:51 +0000 |
commit | a126dae03226f31df63af84dfc8b6eadaf050297 (patch) | |
tree | 46a85080ca7b8aa6607a9571bfdb1472b9abad5c /src/java | |
parent | 19c97f3285ddfc3f076b655707ef9f51281b6202 (diff) | |
download | poi-a126dae03226f31df63af84dfc8b6eadaf050297.tar.gz poi-a126dae03226f31df63af84dfc8b6eadaf050297.zip |
update deprecation version
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1879268 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r-- | src/java/org/apache/poi/hssf/record/FormulaRecord.java | 3 |
1 files changed, 2 insertions, 1 deletions
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(); |