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)