Reports providing nullable type arguments to Java collections that don't accept nulls.

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>()