java.util.Map.get()
methods. Such calls could be replaced
by the shorter and clearer keyed access form.
Example:
def map = ["foo": "bar"]
def str = map.get("foo") // map.get("foo") could be replaced with map["foo"]
After the quick-fix is applied, the result looks like this:
def map = ["foo": "bar"]
def str = map["foo"]