From d7ca60a225da4a134d480fb2301082dcb8aace62 Mon Sep 17 00:00:00 2001 From: 4mjeo <4mj.eo@dsm.hs.kr> Date: Thu, 19 Sep 2024 22:52:16 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20(#750)=20=EC=BA=90=EC=8B=9C=20=EC=A0=81?= =?UTF-8?q?=EC=9A=A9=20=EC=97=90=EB=9F=AC=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../aliens/dms/domain/outing/service/CheckOutingServiceImpl.kt | 2 +- .../team/aliens/dms/domain/student/dto/StudentResponse.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dms-core/src/main/kotlin/team/aliens/dms/domain/outing/service/CheckOutingServiceImpl.kt b/dms-core/src/main/kotlin/team/aliens/dms/domain/outing/service/CheckOutingServiceImpl.kt index 48cc9637e..d61ab6ad0 100644 --- a/dms-core/src/main/kotlin/team/aliens/dms/domain/outing/service/CheckOutingServiceImpl.kt +++ b/dms-core/src/main/kotlin/team/aliens/dms/domain/outing/service/CheckOutingServiceImpl.kt @@ -44,7 +44,7 @@ class CheckOutingServiceImpl( ) { queryOutingAvailableTimePort.queryOutingAvailableTimeByDayOfWeek(outingDate.dayOfWeek) ?.checkAvailable(outingTime, arrivalTime) - ?:throw OutingAvailableTimeMismatchException + ?: throw OutingAvailableTimeMismatchException } override fun checkOutingTypeExists(outingType: OutingType) { diff --git a/dms-core/src/main/kotlin/team/aliens/dms/domain/student/dto/StudentResponse.kt b/dms-core/src/main/kotlin/team/aliens/dms/domain/student/dto/StudentResponse.kt index 3fba13841..43167b2e6 100644 --- a/dms-core/src/main/kotlin/team/aliens/dms/domain/student/dto/StudentResponse.kt +++ b/dms-core/src/main/kotlin/team/aliens/dms/domain/student/dto/StudentResponse.kt @@ -99,7 +99,7 @@ data class StudentDetailsResponse( } data class StudentsResponse( - val students: List, + val students: List = emptyList(), ) { companion object { @JvmName("ofStudentWithTag")