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.git
The following commit(s) were added to refs/heads/main by this push: new 7f1ee84 CAMEL-16534: camel-core - Multiple doTry ..doCatch in Java DSL - issue setting outer doCatch blocks 7f1ee84 is described below commit 7f1ee843faa6f23f4171ad98e95abb3c776ddd2c Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Apr 21 09:04:15 2021 +0200 CAMEL-16534: camel-core - Multiple doTry ..doCatch in Java DSL - issue setting outer doCatch blocks --- .../org/apache/camel/issues/TwoDoTryAndThrowInInnerCatchIssueTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/issues/TwoDoTryAndThrowInInnerCatchIssueTest.java b/core/camel-core/src/test/java/org/apache/camel/issues/TwoDoTryAndThrowInInnerCatchIssueTest.java index 26c1363..f536fea 100644 --- a/core/camel-core/src/test/java/org/apache/camel/issues/TwoDoTryAndThrowInInnerCatchIssueTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/issues/TwoDoTryAndThrowInInnerCatchIssueTest.java @@ -36,7 +36,6 @@ public class TwoDoTryAndThrowInInnerCatchIssueTest extends ContextTestSupport { ExtendedCamelContext ecc = context.adapt(ExtendedCamelContext.class); String xml = ecc.getModelToXMLDumper().dumpModelAsXml(context, context.getRouteDefinition("myroute")); log.info(xml); - System.out.println(xml); getMockEndpoint("mock:catch1").expectedMessageCount(0); getMockEndpoint("mock:catch2").expectedMessageCount(0);