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