This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/main by this push: new bac016ed324 CAMEL-19177: camel-platform-http - Spring Boot implementation that use directly the HTTP server (#793) bac016ed324 is described below commit bac016ed3241155c5ff98647f276ea7dd20266cf Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Mar 22 14:14:28 2023 +0100 CAMEL-19177: camel-platform-http - Spring Boot implementation that use directly the HTTP server (#793) --- .../component/platform/http/springboot/CamelRequestHandlerMapping.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/components-starter/camel-platform-http-starter/src/main/java/org/apache/camel/component/platform/http/springboot/CamelRequestHandlerMapping.java b/components-starter/camel-platform-http-starter/src/main/java/org/apache/camel/component/platform/http/springboot/CamelRequestHandlerMapping.java index 7d6bb54adc4..feed3c46058 100644 --- a/components-starter/camel-platform-http-starter/src/main/java/org/apache/camel/component/platform/http/springboot/CamelRequestHandlerMapping.java +++ b/components-starter/camel-platform-http-starter/src/main/java/org/apache/camel/component/platform/http/springboot/CamelRequestHandlerMapping.java @@ -32,15 +32,12 @@ import org.springframework.web.util.ServletRequestPathUtils; import java.lang.reflect.Method; import java.util.ArrayList; -import java.util.HashMap; import java.util.List; -import java.util.Map; public class CamelRequestHandlerMapping extends RequestMappingHandlerMapping implements PlatformHttpListener { private final PlatformHttpComponent component; private final PlatformHttpEngine engine; - private final Map<String, RequestMappingInfo> mappings = new HashMap<>(); public CamelRequestHandlerMapping(PlatformHttpComponent component, PlatformHttpEngine engine) { this.component = component;