Back to Intellij Community

RedundantGetter

plugins/kotlin/code-insight/descriptions/resources-en/inspectionDescriptions/RedundantGetter.html

2025.3-rc-2236 B
Original Source

Reports redundant property getters.

Example:

class Test {
      val a = 1
          get
      val b = 1
          get() = field
  }

After the quick-fix is applied:

class Test {
      val a = 1
      val b = 1
  }