From 1f97ce605f9077b327e612d41f51809f13a9d308 Mon Sep 17 00:00:00 2001 From: machiav3lli Date: Tue, 4 Oct 2022 02:02:47 +0200 Subject: [PATCH] Remove: Unused expand/retract ActionStates --- src/main/kotlin/com/machiav3lli/fdroid/entity/SubEntities.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/kotlin/com/machiav3lli/fdroid/entity/SubEntities.kt b/src/main/kotlin/com/machiav3lli/fdroid/entity/SubEntities.kt index cd4850dc..f1f3ca09 100644 --- a/src/main/kotlin/com/machiav3lli/fdroid/entity/SubEntities.kt +++ b/src/main/kotlin/com/machiav3lli/fdroid/entity/SubEntities.kt @@ -7,8 +7,6 @@ import android.net.Uri import androidx.annotation.DrawableRes import androidx.annotation.StringRes import androidx.compose.material.icons.Icons -import androidx.compose.material.icons.rounded.ArrowDropDown -import androidx.compose.material.icons.rounded.ArrowDropUp import androidx.compose.material.icons.rounded.Close import androidx.compose.material.icons.rounded.Delete import androidx.compose.material.icons.rounded.Download @@ -125,8 +123,6 @@ sealed class ActionState( object Share : ActionState(R.string.share, Icons.Rounded.Share) class Cancel(@StringRes stateId: Int) : ActionState(stateId, Icons.Rounded.Close) object NoAction : ActionState(R.string.no_action_possible, Icons.Rounded.Close) - object Expand : ActionState(R.string.show_more, Icons.Rounded.ArrowDropDown) - object Retract : ActionState(R.string.show_less, Icons.Rounded.ArrowDropUp) object Bookmark : ActionState(R.string.favorite_add, Icons.Rounded.FavoriteBorder) object Bookmarked : ActionState(R.string.favorite_remove, Icons.Rounded.Favorite) }