Clean up remaining experimental API usages for b/202063800
aosp/1845075 missed these last two calls. The underlying
API is now stable API surface, so these can be removed.
Fixes: b/202063800
Test: gw compileReleaseKotlin
Change-Id: I2402b8ffb3a70f6ff6cf97626dbd54033f1373dc
diff --git a/compose/animation/animation-graphics/src/commonMain/kotlin/androidx/compose/animation/graphics/vector/Animator.kt b/compose/animation/animation-graphics/src/commonMain/kotlin/androidx/compose/animation/graphics/vector/Animator.kt
index 846fe231c..12766ce 100644
--- a/compose/animation/animation-graphics/src/commonMain/kotlin/androidx/compose/animation/graphics/vector/Animator.kt
+++ b/compose/animation/animation-graphics/src/commonMain/kotlin/androidx/compose/animation/graphics/vector/Animator.kt
@@ -26,7 +26,6 @@
import androidx.compose.animation.core.keyframes
import androidx.compose.runtime.Composable
import androidx.compose.runtime.State
-import androidx.compose.ui.ExperimentalComposeUiApi
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.vector.PathNode
@@ -40,7 +39,6 @@
internal sealed class Animator {
abstract val totalDuration: Int
- @OptIn(ExperimentalComposeUiApi::class)
@Composable
fun createVectorConfig(
transition: Transition,
@@ -451,7 +449,6 @@
Sequentially
}
-@OptIn(ExperimentalComposeUiApi::class)
internal class StateVectorConfig : VectorConfig {
var rotationState: State? = null