Skip to content

Commit

Permalink
fix checkstyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksim_Hadalau authored and Maksim_Hadalau committed Nov 16, 2023
1 parent 2fcc535 commit 4f4370d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ private DecodedJWT verifyJwt(String encodedToken, JwkResult jwkResult) {
}
}

private String extractUserSub(DecodedJWT decodedJWT) {
return decodedJWT.getClaim("sub").asString();
private String extractUserSub(DecodedJWT decodedJwt) {
return decodedJwt.getClaim("sub").asString();
}

private String extractUserHash(DecodedJWT decodedJwt) {
Expand Down

0 comments on commit 4f4370d

Please sign in to comment.