You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/04/13 12:34:14 UTC

[camel] 02/06: (chores) camel-http-common: added missing @Override

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit befc0690702a121f74bef8b8fa76287aeb77fa23
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Apr 13 11:11:46 2023 +0200

    (chores) camel-http-common: added missing @Override
---
 .../src/main/java/org/apache/camel/http/common/CamelServlet.java         | 1 +
 1 file changed, 1 insertion(+)

diff --git a/components/camel-http-common/src/main/java/org/apache/camel/http/common/CamelServlet.java b/components/camel-http-common/src/main/java/org/apache/camel/http/common/CamelServlet.java
index e8c289c1b55..55365ae9f5b 100644
--- a/components/camel-http-common/src/main/java/org/apache/camel/http/common/CamelServlet.java
+++ b/components/camel-http-common/src/main/java/org/apache/camel/http/common/CamelServlet.java
@@ -89,6 +89,7 @@ public class CamelServlet extends HttpServlet implements HttpRegistryProvider {
         log.trace("servlet '{}' initialized with: async={}", servletName, async);
     }
 
+    @Override
     protected void service(HttpServletRequest request, HttpServletResponse response) {
         log.trace("Service: {}", request);
         try {