List.replaceAll()
call.
Example:
for (int i = 0; i < strings.size(); i++) {
String str = strings.get(i).toLowerCase();
strings.set(i, str);
}
After the quick-fix is applied:
strings.replaceAll(String::toLowerCase);
New in 2022.1