1
0
mirror of synced 2026-08-05 17:57:15 +00:00

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