We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f53bd1 commit 4d6e92bCopy full SHA for 4d6e92b
domain/src/main/java/com/stop/domain/usecase/route/GetLastTransportTimeUseCaseImpl.kt
@@ -186,7 +186,7 @@ internal class GetLastTransportTimeUseCaseImpl @Inject constructor(
186
stationsOfLine
187
)
188
189
- val weekType = whaWeekToday()
+ val weekType = getDayOfWeek()
190
191
val enableDestinationStation = if (startStationIndex < endStationIndex) {
192
stationsOfLine.subList(startStationIndex, endStationIndex)
@@ -284,7 +284,7 @@ internal class GetLastTransportTimeUseCaseImpl @Inject constructor(
284
/**
285
* 요일 별로 막차 시간이 다르기 때문에, 앱을 실행하는 오늘의 요일도 받아야 한다.
286
*/
287
- private fun whaWeekToday(): WeekType {
+ private fun getDayOfWeek(): WeekType {
288
return WeekType.WEEK
289
}
290
0 commit comments