This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new e105ac5 CAMEL-14644: camel-core - Optimize dynamic EIPs to only normalize uri once e105ac5 is described below commit e105ac5d289c3f1bee02de6b358293037c2c30f6 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Mar 5 09:15:46 2020 +0100 CAMEL-14644: camel-core - Optimize dynamic EIPs to only normalize uri once --- .../camel/component/spring/ws/SpringWebserviceComponent.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/components/camel-spring-ws/src/main/java/org/apache/camel/component/spring/ws/SpringWebserviceComponent.java b/components/camel-spring-ws/src/main/java/org/apache/camel/component/spring/ws/SpringWebserviceComponent.java index 427d222..beab2fb 100644 --- a/components/camel-spring-ws/src/main/java/org/apache/camel/component/spring/ws/SpringWebserviceComponent.java +++ b/components/camel-spring-ws/src/main/java/org/apache/camel/component/spring/ws/SpringWebserviceComponent.java @@ -52,13 +52,6 @@ public class SpringWebserviceComponent extends DefaultComponent implements SSLCo private boolean useGlobalSslContextParameters; @Override - @Deprecated - protected String preProcessUri(String uri) { - String[] u = uri.split("\\?"); - return u[0].replace("%7B", "(").replace("%7D", ")") + (u.length > 1 ? "?" + u[1] : ""); - } - - @Override protected Endpoint createEndpoint(String uri, String remaining, Map<String, Object> parameters) throws Exception { SpringWebserviceConfiguration configuration = new SpringWebserviceConfiguration(); // need to do this first