This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 8081af2086a89618a75a7091835fe56d2fc19364
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Fri Apr 26 16:07:21 2024 +0100

    Remove deprecated code
---
 java/org/apache/coyote/http11/Constants.java | 36 ----------------------------
 1 file changed, 36 deletions(-)

diff --git a/java/org/apache/coyote/http11/Constants.java 
b/java/org/apache/coyote/http11/Constants.java
index b580819b28..7831aa5494 100644
--- a/java/org/apache/coyote/http11/Constants.java
+++ b/java/org/apache/coyote/http11/Constants.java
@@ -70,48 +70,12 @@ public final class Constants {
     public static final byte SEMI_COLON = (byte) ';';
 
 
-    /**
-     * 'A'.
-     *
-     * @deprecated Unused. Will be removed in Tomcat 11.
-     */
-    @Deprecated
-    public static final byte A = (byte) 'A';
-
-
-    /**
-     * 'a'.
-     *
-     * @deprecated Unused. Will be removed in Tomcat 11.
-     */
-    @Deprecated
-    public static final byte a = (byte) 'a';
-
-
-    /**
-     * 'Z'.
-     *
-     * @deprecated Unused. Will be removed in Tomcat 11.
-     */
-    @Deprecated
-    public static final byte Z = (byte) 'Z';
-
-
     /**
      * '?'.
      */
     public static final byte QUESTION = (byte) '?';
 
 
-    /**
-     * Lower case offset.
-     *
-     * @deprecated Unused. Will be removed in Tomcat 11.
-     */
-    @Deprecated
-    public static final byte LC_OFFSET = A - a;
-
-
     /* Various constant "strings" */
     public static final String CONNECTION = "Connection";
     public static final String CLOSE = "close";


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to