From 13bccf778be023e0bf11dc72ae536ffa6d4214a4 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 18 Jul 2019 11:27:37 -0400 Subject: [PATCH] Fix Checkstyle violation for `(` and comment after --- .../integration/handler/LambdaMessageProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/handler/LambdaMessageProcessor.java b/spring-integration-core/src/main/java/org/springframework/integration/handler/LambdaMessageProcessor.java index d53443942d..e48118b434 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/handler/LambdaMessageProcessor.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/handler/LambdaMessageProcessor.java @@ -104,7 +104,7 @@ public class LambdaMessageProcessor implements MessageProcessor, BeanFac "An example of when this often occurs is if the lambda is configured to " + "receive a Message argument.", e.getCause()); } - throw new IllegalStateException( // NOSONAR lost stack trace + throw new IllegalStateException(// NOSONAR lost stack trace "Could not invoke the method '" + this.method + "'", e.getCause()); } catch (Exception e) {