불필요한 빈 이니셜라이저 블록을 보고합니다.

예:


  class Foo {
      init {
          // 빈 init 블록
      }
  }

빠른 수정을 적용한 후:


  class Foo {
  }