冗長な空のイニシャライザーブロックを報告します。

例:


  class Foo {
      init {
          // 空の init ブロック
      }
  }

クイックフィックス適用後:


  class Foo {
  }