Skip to content

Commit

Permalink
Remove synchronized keyword before decodeAndVerifyBearerToken method
Browse files Browse the repository at this point in the history
  • Loading branch information
rehammuzzamil committed Sep 15, 2023
1 parent d980aec commit 6d660ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ private synchronized JWTVerifier getJwtVerifier(String issuer) {
}

@VisibleForTesting
public synchronized DecodedJWT decodeAndVerifyBearerToken(String authHeader) {
DecodedJWT decodeAndVerifyBearerToken(String authHeader) {
if (!authHeader.startsWith(BEARER_PREFIX)) {
ExceptionUtil.throwRuntimeExceptionAndLog(
logger,
Expand Down

0 comments on commit 6d660ff

Please sign in to comment.