Skip to content

Commit

Permalink
Remove deprecated code
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Apr 26, 2024
1 parent e5acf2c commit 8081af2
Showing 1 changed file with 0 additions and 36 deletions.
36 changes: 0 additions & 36 deletions java/org/apache/coyote/http11/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 8081af2

Please sign in to comment.