@Suppress
예:
fun doSmth(@Suppress("UNUSED_PARAMETER") used: Int) { println(used) }
빠른 수정을 적용한 후:
fun doSmth(used: Int) { println(used) }