Fix incorrect usages of @NotNull type parameters in project sources
^KT-36770 In progress
This commit is contained in:
+1
-1
@@ -301,7 +301,7 @@ class JvmSerializerExtension @JvmOverloads constructor(
|
||||
super.serializeErrorType(type, builder)
|
||||
}
|
||||
|
||||
private fun <K, V> getBinding(slice: SerializationMappingSlice<K, V>, key: K): V? =
|
||||
private fun <K : Any, V> getBinding(slice: SerializationMappingSlice<K, V>, key: K): V? =
|
||||
bindings.get(slice, key) ?: globalBindings.get(slice, key)
|
||||
|
||||
private inner class SignatureSerializer {
|
||||
|
||||
Reference in New Issue
Block a user