Skip to content

Commit

Permalink
[CHORE] spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
yummygyudon committed Dec 7, 2024
1 parent d17024d commit 8f8452b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import static sopt.makers.authentication.support.constant.SystemConstant.PATH_ERROR;
import static sopt.makers.authentication.support.constant.SystemConstant.PATH_TEST;


import sopt.makers.authentication.support.constant.JwtConstant;
import sopt.makers.authentication.support.jwt.provider.JwtAuthAccessTokenProvider;
import sopt.makers.authentication.support.security.authentication.CustomAuthentication;
Expand All @@ -32,7 +31,6 @@ public class JwtAuthenticationFilter extends OncePerRequestFilter {

private final JwtAuthAccessTokenProvider authTokenProvider;


@Override
protected void doFilterInternal(
final HttpServletRequest request, final HttpServletResponse response, FilterChain filterChain)
Expand All @@ -51,7 +49,7 @@ protected void doFilterInternal(
public boolean shouldNotFilter(HttpServletRequest request) {
return isWhiteRequest(request) || isJwksRequest(request);
}

private boolean isWhiteRequest(final HttpServletRequest request) {
String url = request.getRequestURL().toString();
return url.contains(PATH_ACTUATOR)
Expand Down

0 comments on commit 8f8452b

Please sign in to comment.