diff --git a/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/configuration/error/data/ErrorResponse.kt b/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/configuration/error/data/ErrorResponse.kt index 14d8f28..6e13d04 100644 --- a/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/configuration/error/data/ErrorResponse.kt +++ b/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/configuration/error/data/ErrorResponse.kt @@ -1,6 +1,5 @@ package com.example.v1oauthauthorizationservice.infrastructure.configuration.error.data -import com.example.v1oauthauthorizationservice.domain.exception.BaseException import org.springframework.http.HttpStatus import org.springframework.validation.BindException import org.springframework.validation.FieldError diff --git a/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/user/repository/UserRepository.kt b/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/user/repository/UserRepository.kt index 14b9073..205ba0b 100644 --- a/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/user/repository/UserRepository.kt +++ b/src/main/kotlin/com/example/v1oauthauthorizationservice/infrastructure/user/repository/UserRepository.kt @@ -9,6 +9,5 @@ import java.util.* interface UserRepository: JpaRepository { fun findByAccountId(accountId: String): User? - fun findUserById(userId: UUID): User? } \ No newline at end of file