要素のデフォルトのモダリティ (ほとんどの要素は finaloverride 付きのメンバーは open) と一致しているモダリティ修飾子を報告します。

例:


  final class Foo

  open class Bar : Comparable<Bar> {
      open override fun compareTo(other: Bar): Int = 0
  }

クイックフィックス適用後:


  class Foo

  open class Bar : Comparable<Bar> {
      override fun compareTo(other: Bar): Int = 0
  }