报告与显示声明一起使用时不必要的 def 修饰符。

示例:


  def boolean foo() {} // modifier is unnecessary
  def Object bar // modifier is unnecessary

  // modifier is required and therefore not highlighted
  def (int a, String b) = []