Reports any redundant modifiers on interfaces or interface components and suggests removing them.

For example, the abstract and public modifiers are redundant and will be reported by the inspection:


  abstract interface Printer {
    public int size();
  }