报告接口或接口组件上的任何冗余修饰符并建议删除它们。

例如,abstractpublic 修饰符是冗余的,会被检查报告:


  abstract interface Printer {
    public int size();
  }