@Suppress
示例:
fun doSmth(@Suppress("UNUSED_PARAMETER") used: Int) { println(used) }
在应用快速修复后:
fun doSmth(used: Int) { println(used) }