Pinned messages: clean code

This commit is contained in:
ganfra
2024-09-04 14:27:18 +02:00
parent 8c87272a83
commit ff3646ead0
31 changed files with 36 additions and 75 deletions

View File

@@ -32,7 +32,6 @@ class DerivedStateFlow<T>(
private val getValue: () -> T,
private val flow: Flow<T>
) : StateFlow<T> {
override val replayCache: List<T>
get() = listOf(value)