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
  }