You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by fa...@apache.org on 2020/12/09 17:04:36 UTC

svn commit: r1884261 - /poi/trunk/src/java/org/apache/poi/ss/usermodel/FontFormatting.java

Author: fanningpj
Date: Wed Dec  9 17:04:35 2020
New Revision: 1884261

URL: http://svn.apache.org/viewvc?rev=1884261&view=rev
Log:
remove more deprecated code

Modified:
    poi/trunk/src/java/org/apache/poi/ss/usermodel/FontFormatting.java

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/FontFormatting.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/FontFormatting.java?rev=1884261&r1=1884260&r2=1884261&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/FontFormatting.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/FontFormatting.java Wed Dec  9 17:04:35 2020
@@ -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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org