From 6902fd906da7008f15a5eac9276de6f5e159f709 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 12 Nov 2018 10:13:10 -0500 Subject: [PATCH] Fix Checkstyle violation from previous commit https://build.spring.io/browse/INT-MASTER-1274/ --- .../http/inbound/HttpRequestHandlingEndpointSupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-http/src/main/java/org/springframework/integration/http/inbound/HttpRequestHandlingEndpointSupport.java b/spring-integration-http/src/main/java/org/springframework/integration/http/inbound/HttpRequestHandlingEndpointSupport.java index 87c43e86b8..6db3e5885a 100644 --- a/spring-integration-http/src/main/java/org/springframework/integration/http/inbound/HttpRequestHandlingEndpointSupport.java +++ b/spring-integration-http/src/main/java/org/springframework/integration/http/inbound/HttpRequestHandlingEndpointSupport.java @@ -501,7 +501,7 @@ public abstract class HttpRequestHandlingEndpointSupport extends BaseHttpInbound return converter.read((Class) expectedType, request); } } - throw new MessagingException( // NOSONAR might be null; see comment above. + throw new MessagingException(// NOSONAR might be null; see comment above. "Could not convert request: no suitable HttpMessageConverter found for expected type [" + expectedType != null ? expectedType.getName() : "null" + "] and content type [" + contentType + "]");