Fix warning
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Jul 2009 07:02:51 +0000 (07:02 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Jul 2009 07:02:51 +0000 (07:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@799189 13f79535-47bb-0310-9956-ffa450edef68

test/org/apache/catalina/startup/TestTomcat.java

index 9fba977..ee87cc5 100644 (file)
@@ -46,6 +46,9 @@ public class TestTomcat extends TestCase {
      * Simple servlet to test in-line registration 
      */
     public static class HelloWorld extends HttpServlet {
+
+        private static final long serialVersionUID = 1L;
+
         public void doGet(HttpServletRequest req, HttpServletResponse res) 
             throws IOException {
           res.getWriter().write("Hello world");