Skip to content

Commit b7b2cb3

Browse files
committed
💚 apply spotless
1 parent 76135cf commit b7b2cb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

personalization-service/src/main/java/de/muenchen/dbs/personalization/checklist/ChecklistService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private String getUserMailFromAuthenticationOrThrow() {
8080
final Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
8181
if (authentication.getPrincipal() instanceof Jwt jwt) {
8282
Object emailClaim = jwt.getClaims().get("email");
83-
if(emailClaim != null) {
83+
if (emailClaim != null) {
8484
final String email = emailClaim.toString();
8585
if (!StringUtils.isBlank(email)) {
8686
return email;

0 commit comments

Comments
 (0)