Fix incorrect usages of @NotNull type parameters in project sources

^KT-36770 In progress
This commit is contained in:
Denis Zharkov
2020-07-21 15:09:17 +03:00
parent 037ff2fa52
commit 41bd013796
9 changed files with 42 additions and 40 deletions
@@ -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 {