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 3f71bafce27012f10fec817f706f788974c6696f
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Wed Apr 13 12:23:36 2022 +0200

    CAMEL-17763: cleaned up unused exceptions in camel-zookeeper
---
 .../camel/component/zookeeper/integration/ConsumeChildrenIT.java       | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/components/camel-zookeeper/src/test/java/org/apache/camel/component/zookeeper/integration/ConsumeChildrenIT.java
 
b/components/camel-zookeeper/src/test/java/org/apache/camel/component/zookeeper/integration/ConsumeChildrenIT.java
index 26d171b3a64..dc7abcc6bdc 100644
--- 
a/components/camel-zookeeper/src/test/java/org/apache/camel/component/zookeeper/integration/ConsumeChildrenIT.java
+++ 
b/components/camel-zookeeper/src/test/java/org/apache/camel/component/zookeeper/integration/ConsumeChildrenIT.java
@@ -21,7 +21,6 @@ import java.util.List;
 import org.apache.camel.CamelExchangeException;
 import org.apache.camel.Exchange;
 import org.apache.camel.Message;
-import org.apache.camel.NoSuchHeaderException;
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
 import org.apache.camel.component.zookeeper.NaturalSortComparator;
@@ -67,7 +66,7 @@ public class ConsumeChildrenIT extends ZooKeeperITSupport {
     }
 
     private void validateExchangesContainListings(MockEndpoint mock, 
List<?>... expected)
-            throws CamelExchangeException, NoSuchHeaderException {
+            throws CamelExchangeException {
         int index = 0;
         for (Exchange received : mock.getReceivedExchanges()) {
             Watcher.Event.EventType expectedEvent;

Reply via email to