getOrDefault
Deprecated
getOrDefault on NotNullMutableMap always returns the value in the map, and defaultValue will never be returned.
Replace with
this.get(key)
Content copied to clipboard
getOrDefault on NotNullMutableMap always returns the value in the map, and defaultValue will never be returned.
this.get(key)