From 11d51b3854b5d6314ce87c5e95cf31d2488ee8a7 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 20 Jul 2023 18:01:17 -0400 Subject: [PATCH] Wrong Immutable Class --- .../java/com/vitorpamplona/amethyst/ui/screen/ThemeViewModel.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/screen/ThemeViewModel.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/screen/ThemeViewModel.kt index e70aa49f2..c64fe3deb 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/screen/ThemeViewModel.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/screen/ThemeViewModel.kt @@ -1,9 +1,9 @@ package com.vitorpamplona.amethyst.ui.screen +import androidx.compose.runtime.Immutable import androidx.lifecycle.LiveData import androidx.lifecycle.MutableLiveData import androidx.lifecycle.ViewModel -import com.google.errorprone.annotations.Immutable @Immutable class ThemeViewModel : ViewModel() {