mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
11 lines
293 B
Java
11 lines
293 B
Java
// "Replace iteration with bulk 'List.replaceAll' call" "false"
|
|
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).toLowerCase());
|
|
System.out.println("bar");
|
|
}
|
|
}
|
|
} |