Files
fast-messenger/app/src/main/kotlin/com/meloda/fast/util/TimeUtils.kt
T
melod1n 1209c37e24 Move from java/ to kotlin/ directory
Android 12 dynamic color usage on login screen
2021-08-31 02:18:29 +03:00

17 lines
372 B
Kotlin

package com.meloda.fast.util
import java.util.*
object TimeUtils {
fun removeTime(date: Date): Long {
return Calendar.getInstance().apply {
time = date
this[Calendar.HOUR_OF_DAY] = 0
this[Calendar.MINUTE] = 0
this[Calendar.SECOND] = 0
this[Calendar.MILLISECOND] = 0
}.timeInMillis
}
}