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:17:11 UTC

[camel] 02/10: CAMEL-17763: cleaned up unused exceptions in camel-johnzon

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 44e5a9d70e047eb804119cacd9df9fe86fdf5ccd
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue Apr 12 16:16:44 2022 +0200

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

diff --git a/components/camel-johnzon/src/test/java/org/apache/camel/component/johnzon/JohnzonJsonDataFormatTest.java b/components/camel-johnzon/src/test/java/org/apache/camel/component/johnzon/JohnzonJsonDataFormatTest.java
index 9eb4e994081..8121ff10e04 100644
--- a/components/camel-johnzon/src/test/java/org/apache/camel/component/johnzon/JohnzonJsonDataFormatTest.java
+++ b/components/camel-johnzon/src/test/java/org/apache/camel/component/johnzon/JohnzonJsonDataFormatTest.java
@@ -25,7 +25,7 @@ public class JohnzonJsonDataFormatTest extends JohnzonMarshalTest {
     protected RouteBuilder createRouteBuilder() {
         return new RouteBuilder() {
             @Override
-            public void configure() throws Exception {
+            public void configure() {
                 from("direct:in").marshal().json(JsonLibrary.Johnzon);
                 from("direct:back").unmarshal().json(JsonLibrary.Johnzon).to("mock:reverse");