@Suppress
例:
fun doSmth(@Suppress("UNUSED_PARAMETER") used: Int) { println(used) }
クイックフィックス適用後:
fun doSmth(used: Int) { println(used) }