报告速记形式的注解并建议以具有属性名称的正常形式重写它们。

示例:


  @SuppressWarnings("foo")

在应用快速修复后:


  @SuppressWarnings(value = "foo")