From c5fa17c8351e60e2536d8c7f419af64beab8bafb Mon Sep 17 00:00:00 2001 From: Patrick Michalik <120058021+patrickmichalik@users.noreply.github.com> Date: Fri, 1 Dec 2023 19:17:36 +0100 Subject: [PATCH] Update `MutableExtraStore#remove` to use star projection --- .../com/patrykandpatrick/vico/core/entry/diff/ExtraStore.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vico/core/src/main/java/com/patrykandpatrick/vico/core/entry/diff/ExtraStore.kt b/vico/core/src/main/java/com/patrykandpatrick/vico/core/entry/diff/ExtraStore.kt index 8a0e0f100..518a6fdd6 100644 --- a/vico/core/src/main/java/com/patrykandpatrick/vico/core/entry/diff/ExtraStore.kt +++ b/vico/core/src/main/java/com/patrykandpatrick/vico/core/entry/diff/ExtraStore.kt @@ -86,7 +86,7 @@ public class MutableExtraStore internal constructor(mapDelegate: Map, Any /** * Removes the value associated with the provided key. */ - public fun remove(key: Key) { + public fun remove(key: Key<*>) { mapDelegate.remove(key) }