-
-
Notifications
You must be signed in to change notification settings - Fork 115
Closed
Labels
Description
Original code (from https://github.com/jhipster/jhipster-sample-app/blob/master/src/main/java/io/github/jhipster/sample/security/jwt/TokenProvider.java#L90):
Collection<? extends GrantedAuthority> authorities =
Arrays.stream(claims.get(AUTHORITIES_KEY).toString().split(","))
.map(SimpleGrantedAuthority::new)
.collect(Collectors.toList());
After:
Collection<? extends GrantedAuthority> authorities = Arrays.stream(
claims.get(AUTHORITIES_KEY).toString().split(",")
)
.map(SimpleGrantedAuthority::new)
.collect(Collectors.toList());
Options used:
tabWidth: 4
printWidth: 120
Reactions are currently unavailable