관련 컴파일러 진단이 해당 컨텍스트에서 더 이상 적용되지 않으므로 안전하게 제거할 수 있는 @Suppress 어노테이션을 보고합니다.

예:


  fun doSmth(@Suppress("UNUSED_PARAMETER") used: Int) {
    println(used)
  }

빠른 수정을 적용한 후:


  fun doSmth(used: Int) {
    println(used)
  }