You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/04/01 16:00:18 UTC

[camel] 02/09: CAMEL-17763: cleanup unused exceptions in camel-chunk

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 bbb208cc9bd28c3c7141ed03affa6636f0c178a8
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Fri Apr 1 16:46:04 2022 +0200

    CAMEL-17763: cleanup unused exceptions in camel-chunk
---
 .../src/test/java/org/apache/camel/component/chunk/ChunkLetterTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-chunk/src/test/java/org/apache/camel/component/chunk/ChunkLetterTest.java b/components/camel-chunk/src/test/java/org/apache/camel/component/chunk/ChunkLetterTest.java
index ecc2c61..c358284 100644
--- a/components/camel-chunk/src/test/java/org/apache/camel/component/chunk/ChunkLetterTest.java
+++ b/components/camel-chunk/src/test/java/org/apache/camel/component/chunk/ChunkLetterTest.java
@@ -55,7 +55,7 @@ public class ChunkLetterTest extends CamelTestSupport {
     @Override
     protected RouteBuilder createRouteBuilder() {
         return new RouteBuilder() {
-            public void configure() throws Exception {
+            public void configure() {
                 from("direct:a")
                         .to("chunk:letter")
                         .to("mock:result");