You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/03/05 13:08:10 UTC

[camel] branch master updated: Camel-Core: Fixed CS

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 228358a  Camel-Core: Fixed CS
228358a is described below

commit 228358ae4ea76e4ddeafabfe40f9873c7cb16e40
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Mar 5 14:07:34 2020 +0100

    Camel-Core: Fixed CS
---
 .../processor/onexception/OnExceptionHandledThrowsExceptionTest.java  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/core/camel-core/src/test/java/org/apache/camel/processor/onexception/OnExceptionHandledThrowsExceptionTest.java b/core/camel-core/src/test/java/org/apache/camel/processor/onexception/OnExceptionHandledThrowsExceptionTest.java
index 14ecfe9..5de82c2 100644
--- a/core/camel-core/src/test/java/org/apache/camel/processor/onexception/OnExceptionHandledThrowsExceptionTest.java
+++ b/core/camel-core/src/test/java/org/apache/camel/processor/onexception/OnExceptionHandledThrowsExceptionTest.java
@@ -45,7 +45,9 @@ public class OnExceptionHandledThrowsExceptionTest extends ContextTestSupport {
             @Override
             public void configure() throws Exception {
                 onException(IOException.class)
-                        .handled(e -> { throw new IllegalArgumentException("Another Forced");}).to("log:foo?showAll=true").to("mock:handled");
+                        .handled(e -> { 
+                            throw new IllegalArgumentException("Another Forced");
+                        }).to("log:foo?showAll=true").to("mock:handled");
 
                 from("direct:start").throwException(new IOException("Forced"));
             }