Inspectopedia Help

Call to List.get can be keyed access

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]

Inspection Details

Available in:

IntelliJ IDEA 2023.3, Qodana for JVM 2023.3

Plugin:

Groovy, 233.SNAPSHOT

Last modified: 13 July 2023