Skip to content

Commit

Permalink
merge: (#750) 캐시 적용 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
4mjeo authored Sep 19, 2024
2 parents e7100f4 + d7ca60a commit 50eaa8c
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 50eaa8c

Please sign in to comment.