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/12 10:27:41 UTC

[camel] 01/09: CAMEL-17763: cleanup unused exceptions in camel-ical

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 d510b7a94c399017b376492967413808a807bde9
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue Apr 12 11:04:37 2022 +0200

    CAMEL-17763: cleanup unused exceptions in camel-ical
---
 .../test/java/org/apache/camel/component/ical/ICalDataFormatTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-ical/src/test/java/org/apache/camel/component/ical/ICalDataFormatTest.java b/components/camel-ical/src/test/java/org/apache/camel/component/ical/ICalDataFormatTest.java
index 534a481fbf6..7091e937f47 100644
--- a/components/camel-ical/src/test/java/org/apache/camel/component/ical/ICalDataFormatTest.java
+++ b/components/camel-ical/src/test/java/org/apache/camel/component/ical/ICalDataFormatTest.java
@@ -98,10 +98,10 @@ public class ICalDataFormatTest extends CamelTestSupport {
     }
 
     @Override
-    protected RouteBuilder createRouteBuilder() throws Exception {
+    protected RouteBuilder createRouteBuilder() {
         return new RouteBuilder() {
             @Override
-            public void configure() throws Exception {
+            public void configure() {
                 from("direct:unmarshal")
                         .unmarshal("ical")
                         .to("mock:result");