Merge branch '2.0.x'

This commit is contained in:
Phillip Webb
2018-07-29 09:28:56 +01:00
48 changed files with 57 additions and 58 deletions

View File

@@ -164,7 +164,7 @@ public class AnnotationsPropertySource extends EnumerablePropertySource<Class<?>
private String dotAppend(String prefix, String postfix) {
if (StringUtils.hasText(prefix)) {
return (prefix.endsWith(".") ? prefix + postfix : prefix + "." + postfix);
return prefix.endsWith(".") ? prefix + postfix : prefix + "." + postfix;
}
return postfix;
}