Fix ktlint issue that was accidentally merged (#8139)

This commit is contained in:
Jorge Martin Espinosa 2023-02-16 12:14:15 +01:00 committed by GitHub
parent 2453f2cee0
commit a358644354
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
changelog.d/8139.misc Normal file
View File

@ -0,0 +1 @@
Fix ktlint issue with fields and a new line.

View File

@ -33,6 +33,7 @@ class CountUpTimer(
private val lastTime: AtomicLong = AtomicLong(clock.epochMillis())
private val elapsedTime: AtomicLong = AtomicLong(0)
// To ensure that the regular tick value is an exact multiple of `intervalInMs`
private val specialRound = SpecialRound(intervalInMs)