refactor: null safety, update date/time libraries, and migrate tests (#4900)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2026-03-23 18:17:50 -05:00 committed by GitHub
parent f826cac6c8
commit 664ebf218e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
163 changed files with 503 additions and 4993 deletions

View file

@ -40,7 +40,8 @@ enum class TopLevelDestination(val label: StringResource, val route: Route) {
;
companion object {
fun fromNavKey(key: NavKey?): TopLevelDestination? =
entries.find { dest -> key?.let { it::class == dest.route::class } == true }
fun fromNavKey(key: NavKey?): TopLevelDestination? = entries.find { dest ->
key?.let { it::class == dest.route::class } == true
}
}
}