aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2020-12-09 17:04:35 +0000
committerPJ Fanning <fanningpj@apache.org>2020-12-09 17:04:35 +0000
commitc1f5d62c35593024c9cd2f6b66d32b023170dbe9 (patch)
treeafd39135b74002527577476cc0d6394b69db65d5 /src/java/org/apache/poi
parenta42127e15b941e250920d3c6b81e22fb89390ba1 (diff)
downloadpoi-c1f5d62c35593024c9cd2f6b66d32b023170dbe9.tar.gz
poi-c1f5d62c35593024c9cd2f6b66d32b023170dbe9.zip
remove more deprecated code
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884261 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi')
-rw-r--r--src/java/org/apache/poi/ss/usermodel/FontFormatting.java68
1 files changed, 0 insertions, 68 deletions
diff --git a/src/java/org/apache/poi/ss/usermodel/FontFormatting.java b/src/java/org/apache/poi/ss/usermodel/FontFormatting.java
index ca7335aac5..cce523fe29 100644
--- a/src/java/org/apache/poi/ss/usermodel/FontFormatting.java
+++ b/src/java/org/apache/poi/ss/usermodel/FontFormatting.java
@@ -19,8 +19,6 @@
package org.apache.poi.ss.usermodel;
-import org.apache.poi.util.Removal;
-
/**
* High level representation for Font Formatting component
* of Conditional Formatting settings
@@ -29,72 +27,6 @@ public interface FontFormatting {
// TODO: refactor and unify Font & FontFormatting in POI 5.0.0
/**
- * Escapement type - None
- *
- * @deprecated use {@link Font#SS_NONE} instead
- */
- @Deprecated
- @Removal(version = "5.0.0")
- short SS_NONE = 0;
- /**
- * Escapement type - Superscript
- *
- * @deprecated use {@link Font#SS_SUPER} instead
- */
- @Deprecated
- @Removal(version = "5.0.0")
- short SS_SUPER = 1;
- /**
- * Escapement type - Subscript
- *
- * @deprecated use {@link Font#SS_SUB} instead
- */
- @Deprecated
- @Removal(version = "5.0.0")
- short SS_SUB = 2;
-
- /**
- * Underline type - None
- *
- * @deprecated use {@link Font#U_NONE} instead
- */
- @Deprecated
- @Removal(version = "5.0.0")
- byte U_NONE = 0;
- /**
- * Underline type - Single
- *
- * @deprecated use {@link Font#U_SINGLE} instead
- */
- @Deprecated
- @Removal(version = "5.0.0")
- byte U_SINGLE = 1;
- /**
- * Underline type - Double
- *
- * @deprecated use {@link Font#U_DOUBLE} instead
- */
- @Deprecated
- @Removal(version = "5.0.0")
- byte U_DOUBLE = 2;
- /**
- * Underline type - Single Accounting
- *
- * @deprecated use {@link Font#U_SINGLE_ACCOUNTING} instead
- */
- @Deprecated
- @Removal(version = "5.0.0")
- byte U_SINGLE_ACCOUNTING = 0x21;
- /**
- * Underline type - Double Accounting
- *
- * @deprecated use {@link Font#U_DOUBLE_ACCOUNTING} instead
- */
- @Deprecated
- @Removal(version = "5.0.0")
- byte U_DOUBLE_ACCOUNTING = 0x22;
-
- /**
* get the type of super or subscript for the font
*
* @return super or subscript option