Merge branch '1.5.x'

This commit is contained in:
Andy Wilkinson
2017-01-26 15:05:02 +00:00
9 changed files with 19 additions and 18 deletions

View File

@@ -39,8 +39,8 @@ public class SampleController {
@GetMapping("/")
@ResponseBody
public Map<String, String> hello() {
return Collections.singletonMap("message", "Hello " +
this.helloWorldProperties.getName());
return Collections.singletonMap("message",
"Hello " + this.helloWorldProperties.getName());
}
protected static class Message {