Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2013-08-09 02:45:39 +0000
committerGreg Wilkins2013-08-09 02:45:39 +0000
commit12f1d0f16eb2150e438a39e7e29fc7bcebcf6847 (patch)
tree5bde01d728c45fa4c25e201a373723c105143e21
parenta7794259946f3b61bd39658cc12bfb6c873fa43f (diff)
downloadorg.eclipse.jetty.project-12f1d0f16eb2150e438a39e7e29fc7bcebcf6847.tar.gz
org.eclipse.jetty.project-12f1d0f16eb2150e438a39e7e29fc7bcebcf6847.tar.xz
org.eclipse.jetty.project-12f1d0f16eb2150e438a39e7e29fc7bcebcf6847.zip
414625 final static version fields
-rw-r--r--jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java b/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java
index b30c94ef1e..94c2be1617 100644
--- a/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java
+++ b/jetty-server/src/main/java/org/eclipse/jetty/server/handler/ContextHandler.java
@@ -101,8 +101,8 @@ import org.eclipse.jetty.util.resource.Resource;
@ManagedObject("URI Context")
public class ContextHandler extends ScopedHandler implements Attributes, Graceful
{
- public static int SERVLET_MAJOR_VERSION=3;
- public static int SERVLET_MINOR_VERSION=0;
+ public final static int SERVLET_MAJOR_VERSION=3;
+ public final static int SERVLET_MINOR_VERSION=0;
final private static String __unimplmented="Unimplemented - use org.eclipse.jetty.servlet.ServletContextHandler";

Back to the top