Skip to content

Commit

Permalink
Merge pull request #229 from GSM-MSG/228-Unnecessary-import-delete
Browse files Browse the repository at this point in the history
deleted::불필요한 import문 삭제
  • Loading branch information
Umjiseung authored Dec 13, 2023
2 parents 83a61ab + 3eae7d9 commit 3ce8b0e
Show file tree
Hide file tree
Showing 15 changed files with 0 additions and 22 deletions.
1 change: 0 additions & 1 deletion src/main/kotlin/com/msg/gauth/domain/client/Client.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.msg.gauth.domain.client

import com.msg.gauth.domain.client.enums.ServiceScope
import com.msg.gauth.domain.client.presentation.dto.request.ClientUpdateReqDto
import com.msg.gauth.domain.user.User
import com.msg.gauth.global.entity.BaseIdEntity
import javax.persistence.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package com.msg.gauth.domain.client.repository

import com.msg.gauth.domain.client.QClient.client
import com.msg.gauth.domain.user.User
import com.querydsl.core.types.dsl.BooleanExpression
import com.querydsl.jpa.impl.JPAQueryFactory
import org.springframework.stereotype.Repository

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ package com.msg.gauth.domain.client.service
import com.msg.gauth.domain.client.repository.ClientRepository
import com.msg.gauth.domain.user.util.UserUtil
import com.msg.gauth.global.annotation.service.TransactionalService
import org.springframework.stereotype.Service
import org.springframework.transaction.annotation.Transactional

@TransactionalService
class DeleteClientsService(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import com.msg.gauth.domain.client.repository.ClientRepository
import com.msg.gauth.domain.user.util.UserUtil
import com.msg.gauth.global.annotation.service.TransactionalService
import com.msg.gauth.global.thirdparty.aws.s3.S3Util
import org.springframework.web.multipart.MultipartFile
import java.util.UUID

@TransactionalService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ import com.msg.gauth.domain.client.exception.ClientNotFindException
import com.msg.gauth.domain.client.presentation.dto.request.ClientUpdateReqDto
import com.msg.gauth.domain.client.repository.ClientRepository
import com.msg.gauth.global.annotation.service.TransactionalService
import com.msg.gauth.global.thirdparty.aws.s3.S3Util
import org.springframework.data.repository.findByIdOrNull
import org.springframework.web.multipart.MultipartFile

@TransactionalService
class UpdateAnyClientService(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
package com.msg.gauth.domain.client.service

import com.msg.gauth.domain.client.Client
import com.msg.gauth.domain.client.exception.ClientNotFindException
import com.msg.gauth.domain.client.presentation.dto.request.ClientUpdateReqDto
import com.msg.gauth.domain.client.repository.ClientRepository
import com.msg.gauth.domain.user.util.UserUtil
import com.msg.gauth.global.annotation.service.TransactionalService
import com.msg.gauth.global.thirdparty.aws.s3.S3Util
import org.springframework.web.multipart.MultipartFile

@TransactionalService
class UpdateClientService(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.msg.gauth.domain.image.presentation

import com.amazonaws.Response
import com.msg.gauth.domain.image.presentation.dto.response.UploadImageResDto
import com.msg.gauth.domain.image.service.DeleteImageService
import com.msg.gauth.domain.image.service.UploadImageService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import com.msg.gauth.domain.image.presentation.dto.response.UploadImageResDto
import com.msg.gauth.global.thirdparty.aws.s3.S3Util
import org.springframework.stereotype.Service
import org.springframework.web.multipart.MultipartFile
import java.util.*

@Service
class UploadImageService(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.msg.gauth.domain.user.service

import com.msg.gauth.domain.user.User
import com.msg.gauth.domain.user.enums.UserRole
import com.msg.gauth.domain.user.enums.UserState
import com.msg.gauth.domain.user.exception.UserNotFoundException
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.msg.gauth.domain.user.service

import com.msg.gauth.domain.client.exception.BadUserRoleRequestException
import com.msg.gauth.domain.user.User
import com.msg.gauth.domain.user.enums.UserRole
import com.msg.gauth.domain.user.enums.UserState
import com.msg.gauth.domain.user.exception.UserNotFoundException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import org.springframework.validation.BindException
import org.springframework.web.bind.annotation.ExceptionHandler
import org.springframework.web.bind.annotation.RestControllerAdvice
import org.springframework.web.servlet.NoHandlerFoundException
import java.lang.ArithmeticException
import javax.servlet.http.HttpServletRequest

@RestControllerAdvice
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ import com.msg.gauth.global.exception.exceptions.BasicException
import org.slf4j.LoggerFactory
import org.springframework.http.MediaType
import org.springframework.web.filter.OncePerRequestFilter
import java.io.IOException
import javax.servlet.FilterChain
import javax.servlet.ServletException
import javax.servlet.http.HttpServletRequest
import javax.servlet.http.HttpServletResponse

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.msg.gauth.global.filter

import com.msg.gauth.global.exception.ErrorCode
import com.msg.gauth.global.exception.exceptions.BasicException
import org.slf4j.LoggerFactory
import org.springframework.web.filter.OncePerRequestFilter
import javax.servlet.FilterChain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import org.springframework.mail.javamail.JavaMailSender
import org.springframework.mail.javamail.JavaMailSenderImpl
import org.thymeleaf.TemplateEngine
import org.thymeleaf.spring5.SpringTemplateEngine

@Configuration
class MailConfig(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.msg.gauth.global.thirdparty.mail.properties

import org.springframework.beans.factory.annotation.Value
import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.boot.context.properties.ConstructorBinding

Expand Down

0 comments on commit 3ce8b0e

Please sign in to comment.