Skip to content

Commit

Permalink
Update MutableExtraStore#remove to use star projection
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmichalik committed Dec 1, 2023
1 parent edb0861 commit c5fa17c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public class MutableExtraStore internal constructor(mapDelegate: Map<Key<*>, Any
/**
* Removes the value associated with the provided key.
*/
public fun <T : Any> remove(key: Key<T>) {
public fun remove(key: Key<*>) {
mapDelegate.remove(key)
}

Expand Down

0 comments on commit c5fa17c

Please sign in to comment.