This is an automated email from the ASF dual-hosted git repository. jpoth pushed a commit to branch camel-2.21.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.21.x by this push: new 16689c2 [CAMEL-12621] fix checkstyle 16689c2 is described below commit 16689c23204c22b2ad7261308e02324f44194752 Author: jpoth <poth.j...@gmail.com> AuthorDate: Wed Jul 4 13:53:59 2018 +0200 [CAMEL-12621] fix checkstyle (cherry picked from commit f19b8e5925deb241eff8f32ba983083106c4ee55) --- .../src/main/java/org/apache/camel/http/common/CamelServlet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 180a9a8..86b8d98 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 @@ -42,9 +42,9 @@ import org.slf4j.LoggerFactory; */ public class CamelServlet extends HttpServlet { public static final String ASYNC_PARAM = "async"; + public static final List<String> METHODS = Arrays.asList("GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "OPTIONS", "CONNECT", "PATCH"); private static final long serialVersionUID = -7061982839117697829L; - public static final List<String> METHODS = Arrays.asList("GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "OPTIONS", "CONNECT", "PATCH"); protected final Logger log = LoggerFactory.getLogger(getClass());