Reports map.get()!! that can be replaced with map.getValue(), map.getOrElse(), and so on.

示例:


fun test(map: Map<Int, String>): String = map.get(0)!!

在应用快速修复后:


fun test(map: Map<Int, String>): String = map.getValue(0)