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 <[email protected]>
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"));
}