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 6e2682ae46ce74e6bd7c4859a3116e8b35a03d58 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Tue Jun 21 09:15:31 2022 +0200 (chores) camel-resteasy: removed unused parameters --- .../org/apache/camel/component/resteasy/ResteasyComponent.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/components/camel-resteasy/src/main/java/org/apache/camel/component/resteasy/ResteasyComponent.java b/components/camel-resteasy/src/main/java/org/apache/camel/component/resteasy/ResteasyComponent.java index 6a90d1488d6..3a10e36c9cc 100644 --- a/components/camel-resteasy/src/main/java/org/apache/camel/component/resteasy/ResteasyComponent.java +++ b/components/camel-resteasy/src/main/java/org/apache/camel/component/resteasy/ResteasyComponent.java @@ -37,7 +37,6 @@ import org.apache.camel.spi.annotations.Component; import org.apache.camel.util.FileUtil; import org.apache.camel.util.URISupport; import org.apache.camel.util.UnsafeUriCharactersEncoder; -import org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher; @Component("resteasy") @Metadata(excludeProperties = "clientConnectionManager,connectionsPerRoute,connectionTimeToLive," @@ -52,11 +51,7 @@ public class ResteasyComponent extends HttpComponent implements RestConsumerFact private String proxyConsumersClasses; public ResteasyComponent() { - super(ResteasyEndpoint.class); - } - - public ResteasyComponent(HttpServletDispatcher dispatcher) { - super(ResteasyEndpoint.class); + super(); } @Override
