1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-12-25 04:17:59 +01:00

Simplify ReferenceTime.now()

This commit is contained in:
Paul Schaub 2023-06-30 18:04:58 +02:00
parent 23514f1d0e
commit 4adc2722bd
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -23,11 +23,7 @@ interface ReferenceTime {
*/ */
@JvmStatic @JvmStatic
fun now(): ReferenceTime { fun now(): ReferenceTime {
val now = Date() return timestamp(Date())
return object: ReferenceTime {
override val timestamp: Date
get() = now
}
} }
/** /**