报告冗余的空白初始值设定项块。

示例:


  class Foo {
      init {
          // 空 init 块
      }
  }

在应用快速修复后:


  class Foo {
  }