From bca9e16bd0d600db79650f8f49ec2baf87c81c42 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sun, 23 Aug 2026 22:30:56 -0400 Subject: [PATCH] android: ktlint wants that body expression on one line --- .../app/src/main/java/com/fabledsword/thoughtsync/ui/Time.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/android/app/src/main/java/com/fabledsword/thoughtsync/ui/Time.kt b/android/app/src/main/java/com/fabledsword/thoughtsync/ui/Time.kt index 45ea2c4..5f465e3 100644 --- a/android/app/src/main/java/com/fabledsword/thoughtsync/ui/Time.kt +++ b/android/app/src/main/java/com/fabledsword/thoughtsync/ui/Time.kt @@ -67,8 +67,7 @@ fun reminderLabel( } /** A stored instant as epoch milliseconds, or null if it will not parse. */ -fun epochMillis(raw: String): Long? = - runCatching { OffsetDateTime.parse(raw).toInstant().toEpochMilli() }.getOrNull() +fun epochMillis(raw: String): Long? = runCatching { OffsetDateTime.parse(raw).toInstant().toEpochMilli() }.getOrNull() /** Whether a stored reminder has already passed, for showing it as overdue. */ fun isPast(raw: String): Boolean {