Skip to content

Commit

Permalink
var -> val
Browse files Browse the repository at this point in the history
  • Loading branch information
MM2-0 committed Dec 24, 2024
1 parent 0c6c467 commit 27ac650
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ class IconService(

private val cache = LruCache<String, LauncherIcon>(200)

private var iconProviders: MutableStateFlow<List<IconProvider>> = MutableStateFlow(listOf())
private val iconProviders: MutableStateFlow<List<IconProvider>> = MutableStateFlow(listOf())

/**
* Signal that installed icon packs have been updated. Force a reload of all icons.
*/
private val iconPacksUpdated = MutableSharedFlow<Unit>(1)

private var transformations: MutableStateFlow<List<LauncherIconTransformation>> =
private val transformations: MutableStateFlow<List<LauncherIconTransformation>> =
MutableStateFlow(
listOf()
)
Expand Down

0 comments on commit 27ac650

Please sign in to comment.