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 17:48:36 UTC

[camel] 06/09: CAMEL-17763: cleaned up unused exceptions in camel-master

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 1b5b92c5b25d2cc299986b3f18d817d105577661
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue Apr 12 17:18:31 2022 +0200

    CAMEL-17763: cleaned up unused exceptions in camel-master
---
 .../java/org/apache/camel/component/master/MasterComponentTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-master/src/test/java/org/apache/camel/component/master/MasterComponentTest.java b/components/camel-master/src/test/java/org/apache/camel/component/master/MasterComponentTest.java
index a5e4e21813d..8e02686efa0 100644
--- a/components/camel-master/src/test/java/org/apache/camel/component/master/MasterComponentTest.java
+++ b/components/camel-master/src/test/java/org/apache/camel/component/master/MasterComponentTest.java
@@ -78,7 +78,7 @@ public class MasterComponentTest {
             context.addService(service);
             context.addRoutes(new RouteBuilder() {
                 @Override
-                public void configure() throws Exception {
+                public void configure() {
                     from("master:ns:timer:test?delay=1000&period=1000")
                             .routeId("route-" + id)
                             .log("From ${routeId}")