Skip to content

Commit

Permalink
시간 관련 함수 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Hank-Choi committed Feb 13, 2025
1 parent 12d68cc commit f45fb72
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,4 @@ data class ClassPlaceAndTimeLegacyRequestDto(
endMinute = endMinute,
)
}

private fun timeStringToMinute(time: String): Int {
val (hour, minute) = time.split(":")
return hour.toInt() * 60 + minute.toInt()
}

private fun periodToMinute(period: Double): Int {
return (period * 60 + 8 * 60).toInt()
}
}

0 comments on commit f45fb72

Please sign in to comment.