Fix convention

This commit is contained in:
Jisoo Youn 2018-09-11 21:08:22 +09:00 committed by Rob Winch
parent 42327a0aec
commit 3f3a3e8351
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ public class HelloMessageService implements MessageService {
@PreAuthorize("authenticated")
public String getMessage() {
Authentication authentication = SecurityContextHolder.getContext()
.getAuthentication();
.getAuthentication();
return "Hello " + authentication;
}
}