Reports annotations that can be simplified to their single-element or marker shorthand form.

Problems reported:

Example:


  @interface Foo { String[] value(); }

  @ Foo({"foo"})
  public String name;

After the quick-fix is applied:


  @interface Foo { String[] value(); }

  @Foo("foo")
  public String name;