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-jakartaee-migration.git


The following commit(s) were added to refs/heads/main by this push:
     new 6b8cf4d  Fix IDE warnings
6b8cf4d is described below

commit 6b8cf4d22723c9932bd1700b2dfa1d0e25e1cea3
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Jul 3 13:18:25 2024 +0100

    Fix IDE warnings
---
 src/test/resources/HelloServlet.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/test/resources/HelloServlet.java 
b/src/test/resources/HelloServlet.java
index 4ab645c..8572abd 100644
--- a/src/test/resources/HelloServlet.java
+++ b/src/test/resources/HelloServlet.java
@@ -23,6 +23,9 @@ import javax.servlet.GenericServlet;
 
 public class HelloServlet extends GenericServlet {
 
+    private static final long serialVersionUID = 1L;
+
+    @Override
     public void service(ServletRequest request, ServletResponse response) 
throws IOException, ServletException {
         response.setContentType("text/plain");
         response.getWriter().print("Hello JakartaEE!");


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

Reply via email to