Reports properties accessed via method calls.

Example:


  class Foo {
      int foo
  }

  def bar = new Foo()
  print(bar.getFoo())

After the quick-fix is applied:


  class Foo {
      int foo
  }

  def bar = new Foo()
  print(bar.foo)