Removes time measuring log

This commit is contained in:
Vitor Pamplona
2024-03-25 16:45:21 -04:00
parent 5deb9af477
commit 63600f4782
@@ -74,7 +74,6 @@ import com.vitorpamplona.amethyst.ui.theme.Size30Modifier
import com.vitorpamplona.amethyst.ui.theme.grayText import com.vitorpamplona.amethyst.ui.theme.grayText
import com.vitorpamplona.amethyst.ui.theme.placeholderText import com.vitorpamplona.amethyst.ui.theme.placeholderText
import com.vitorpamplona.amethyst.ui.theme.subtleButton import com.vitorpamplona.amethyst.ui.theme.subtleButton
import kotlin.time.measureTimedValue
@Composable @Composable
fun AmethystIcon(iconSize: Dp) { fun AmethystIcon(iconSize: Dp) {
@@ -88,8 +87,6 @@ fun AmethystIcon(iconSize: Dp) {
@Composable @Composable
fun FollowingIcon(iconSize: Dp) { fun FollowingIcon(iconSize: Dp) {
val (value, elapsed) =
measureTimedValue {
Icon( Icon(
imageVector = Following, imageVector = Following,
contentDescription = stringResource(id = R.string.following), contentDescription = stringResource(id = R.string.following),
@@ -97,8 +94,6 @@ fun FollowingIcon(iconSize: Dp) {
tint = Color.Unspecified, tint = Color.Unspecified,
) )
} }
println("FollowingIcon $elapsed")
}
@Composable @Composable
fun ArrowBackIcon() { fun ArrowBackIcon() {