Reports usages of the following elements that can be safely removed because the inspection they affect is no longer applicable in this context:

Example:


public class C {
 // symbol is already private,
 // but annotation is still around
  @SuppressWarnings({"WeakerAccess"})
  private boolean CONST = true;
  void f() {
    CONST = false;
  }
}