refactor: AuthInterceptor 개선으로 인한 미사용 MemberService 메서드 제거

This commit is contained in:
이상진 2025-07-23 15:01:38 +09:00
parent 16426c9f99
commit 357f53deb4

View File

@ -36,8 +36,5 @@ class MemberService(
String.format("[email: %s, password: %s]", email, password), String.format("[email: %s, password: %s]", email, password),
HttpStatus.BAD_REQUEST HttpStatus.BAD_REQUEST
) )
fun existsById(memberId: Long): Boolean = memberRepository.existsById(memberId)
} }