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-karaf.git
The following commit(s) were added to refs/heads/main by this push: new 88f6271 CAMEL-17668: camel-core - WireTap - Remove function to tap as new body/header 88f6271 is described below commit 88f6271d1b9f7922d9facffbfe70657b785cadee Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Feb 17 10:14:15 2022 +0100 CAMEL-17668: camel-core - WireTap - Remove function to tap as new body/header --- .../java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java b/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java index b633cb6..e7899c6 100644 --- a/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java +++ b/components/camel-blueprint/src/main/java/org/apache/camel/blueprint/handler/CamelNamespaceHandler.java @@ -1248,9 +1248,6 @@ public class CamelNamespaceHandler implements NamespaceHandler { if (def instanceof SortDefinition) { findLanguage(((SortDefinition) def).getExpression(), languages); } - if (def instanceof WireTapDefinition) { - findLanguage(((WireTapDefinition<?>) def).getNewExchangeExpression(), languages); - } findOutputComponents(def.getOutputs(), components, languages, dataformats); } }