Back to Intellij Community

GroovyListGetCanBeKeyedAccess

plugins/groovy/groovy-psi/resources/inspectionDescriptions/GroovyListGetCanBeKeyedAccess.html

2025.3-rc-2312 B
Original Source

Reports calls to java.util.List.get() methods. Such calls could be replaced by the shorter and clearer keyed access form.

Example:

def list = ["foo"]
def str = list.get(0) // list.get(0) could be replaced with list[0]

After the quick-fix is applied:

def list = ["foo"]
def str = list[0]