Some Java collections shipped in Java Standard Library do not support null elements, keys, or values. Such collections' type arguments shouldn't be instantiated with nullable types.
例:
val map = ConcurrentHashMap<String, String?>()
クイックフィックス適用後:
val map = ConcurrentHashMap<String, String>()