Commit b3c5a050 authored by Andy Wilkinson's avatar Andy Wilkinson

Polish message for matching beans produced by OnBeanCondition

parent 51b56782
...@@ -171,9 +171,9 @@ class OnBeanCondition extends SpringBootCondition implements ConfigurationCondit ...@@ -171,9 +171,9 @@ class OnBeanCondition extends SpringBootCondition implements ConfigurationCondit
} }
reason.append("found beans "); reason.append("found beans ");
reason.append(description); reason.append(description);
reason.append("'"); reason.append(" '");
reason.append(match.getKey()); reason.append(match.getKey());
reason.append("'"); reason.append("' ");
reason.append( reason.append(
StringUtils.collectionToDelimitedString(match.getValue(), ", ")); StringUtils.collectionToDelimitedString(match.getValue(), ", "));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment