java.util.List.get()
例:
def list = ["foo"] def str = list.get(0) // list.get(0) は list[0] に置換できます
クイックフィックス適用後:
def list = ["foo"] def str = list[0]