Raise deprecation level for map delegation accessor according to #KT-18789
#KT-21703
This commit is contained in:
@@ -35,7 +35,7 @@ public inline operator fun <V, V1 : V> Map<in String, @Exact V>.getValue(thisRef
|
||||
public inline operator fun <V, V1 : V> MutableMap<in String, out @Exact V>.getValue(thisRef: Any?, property: KProperty<*>): V1 =
|
||||
@Suppress("UNCHECKED_CAST") (getOrImplicitDefault(property.name) as V1)
|
||||
|
||||
@Deprecated("Use getValue() with two type parameters instead")
|
||||
@Deprecated("Use getValue() with two type parameters instead", level = DeprecationLevel.ERROR)
|
||||
@kotlin.jvm.JvmName("getVarContravariant")
|
||||
@kotlin.internal.LowPriorityInOverloadResolution
|
||||
@kotlin.internal.InlineOnly
|
||||
|
||||
Reference in New Issue
Block a user