Reports redundant empty initializer blocks.
Example:
class Foo { init { // Empty init block } }
After the quick-fix is applied:
class Foo { }