Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo committed Sep 19, 2024
2 parents 2124d56 + 50eaa8c commit 1ea46c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class CheckOutingServiceImpl(
) {
queryOutingAvailableTimePort.queryOutingAvailableTimeByDayOfWeek(outingDate.dayOfWeek)
?.checkAvailable(outingTime, arrivalTime)
?:throw OutingAvailableTimeMismatchException
?: throw OutingAvailableTimeMismatchException
}

override fun checkOutingTypeExists(outingType: OutingType) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ data class StudentDetailsResponse(
}

data class StudentsResponse(
val students: List<StudentDetailsResponse>,
val students: List<StudentDetailsResponse> = emptyList(),
) {
companion object {
@JvmName("ofStudentWithTag")
Expand Down

0 comments on commit 1ea46c3

Please sign in to comment.