mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
10 lines
266 B
Java
10 lines
266 B
Java
// "Replace iteration with bulk 'List.replaceAll' call" "true"
|
|
import java.util.*;
|
|
|
|
class Main {
|
|
void modifyStrings(List<String> strings) {
|
|
for (int i = 0; i < strings.size(); i++) {
|
|
strings.set<caret>(i, strings.get(i).trim().toLowerCase());
|
|
}
|
|
}
|
|
} |