Skip to content

Commit

Permalink
ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
rudeh2926 committed Feb 4, 2024
1 parent a4d95e2 commit 8616c46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package dsm.pick2024.domain.classroom.exception
import dsm.pick2024.global.error.exception.ErrorCode
import dsm.pick2024.global.error.exception.PickException

object AleadyApplyingMovementException : PickException (
object AleadyApplyingMovementException : PickException(
ErrorCode.ALREADY_APPLYING_MOVEMENT
)
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import dsm.pick2024.domain.classroom.exception.AleadyApplyingMovementException
import dsm.pick2024.domain.classroom.port.`in`.UserMoveClassroomUseCase
import dsm.pick2024.domain.classroom.port.out.ClassroomSavePort
import dsm.pick2024.domain.classroom.port.out.ExistsByUsernamePort
import dsm.pick2024.domain.classroom.port.out.FindByUsernamePort
import dsm.pick2024.domain.classroom.presentation.dto.request.UserMoveClassroomRequest
import dsm.pick2024.domain.user.port.`in`.UserFacadeUseCase
import org.springframework.stereotype.Service
Expand All @@ -29,7 +28,7 @@ class UserMoveClassroomService(
val classroom = Classroom(
username = user,
classroomName = request.classroomName,
floor = request.floor,
floor = request.floor
)
classroomSavePort.save(classroom)
}
Expand Down

0 comments on commit 8616c46

Please sign in to comment.