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