Use lambda expressions for lazy instantiation (#1911)

Issue: SPR-17074
This commit is contained in:
Сергей Цыпанов
2018-07-31 14:03:18 +03:00
committed by Sam Brannen
parent 487e14d549
commit f8340838b3
11 changed files with 11 additions and 11 deletions

View File

@@ -159,7 +159,7 @@ class MessageBrokerBeanDefinitionParser implements BeanDefinitionParser {
List<String> paths = Arrays.asList(StringUtils.tokenizeToStringArray(pathAttribute, ","));
for (String path : paths) {
path = path.trim();
Assert.state(StringUtils.hasText(path), "Invalid <stomp-endpoint> path attribute: " + pathAttribute);
Assert.state(StringUtils.hasText(path), () -> "Invalid <stomp-endpoint> path attribute: " + pathAttribute);
if (DomUtils.getChildElementByTagName(endpointElem, "sockjs") != null) {
path = path.endsWith("/") ? path + "**" : path + "/**";
}