Skip to content

Commit 27ac650

Browse files
committed
var -> val
1 parent 0c6c467 commit 27ac650

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/icons/src/main/java/de/mm20/launcher2/icons/IconService.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ class IconService(
7474

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

77-
private var iconProviders: MutableStateFlow<List<IconProvider>> = MutableStateFlow(listOf())
77+
private val iconProviders: MutableStateFlow<List<IconProvider>> = MutableStateFlow(listOf())
7878

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

84-
private var transformations: MutableStateFlow<List<LauncherIconTransformation>> =
84+
private val transformations: MutableStateFlow<List<LauncherIconTransformation>> =
8585
MutableStateFlow(
8686
listOf()
8787
)

0 commit comments

Comments
 (0)