This inspection reports usages of which can be safely removed because inspection they affect is no longer applicable in this context.

For example:

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