Fix servlet spec minor version for ee11

This commit is contained in:
Jan Bartel 2024-06-20 07:52:31 +10:00
parent ec9482bf86
commit c5af1aeb3c
1 changed files with 1 additions and 1 deletions

View File

@ -2048,7 +2048,7 @@ public class ServletContextHandler extends ContextHandler
public class ServletContextApi implements jakarta.servlet.ServletContext
{
public static final int SERVLET_MAJOR_VERSION = 6;
public static final int SERVLET_MINOR_VERSION = 0;
public static final int SERVLET_MINOR_VERSION = 1;
private int _effectiveMajorVersion = SERVLET_MAJOR_VERSION;
private int _effectiveMinorVersion = SERVLET_MINOR_VERSION;