Pinned messages: clean code

This commit is contained in:
ganfra 2024-09-04 14:27:18 +02:00
parent 57a8e3b5a6
commit c30398ccc7
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)