Skip to content

Commit

Permalink
Change method decodeAndVerifyBearerToken access modifier to 'public' (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rehammuzzamil authored Oct 6, 2023
1 parent 65a4975 commit ad58207
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
DecodedJWT decodeAndVerifyBearerToken(String authHeader) {
public DecodedJWT decodeAndVerifyBearerToken(String authHeader) {
if (!authHeader.startsWith(BEARER_PREFIX)) {
ExceptionUtil.throwRuntimeExceptionAndLog(
logger,
Expand Down

0 comments on commit ad58207

Please sign in to comment.