getOrDefault

open override fun getOrDefault(key: K, defaultValue: V): V

Deprecated

getOrDefault on NotNullMutableMap always returns the value in the map, and defaultValue will never be returned.

Replace with

this.get(key)