报告主构造函数上的冗余构造函数关键字。
示例:
class Foo
constructor
(x: Int, y: Int)
在应用快速修复后:
class Foo(x: Int, y: Int)