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)