Fix Checkstyle violation from previous commit

https://build.spring.io/browse/INT-MASTER-1274/
This commit is contained in:
Artem Bilan
2018-11-12 10:13:10 -05:00
parent fb5854c480
commit 6902fd906d

View File

@@ -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 + "]");