mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
11 lines
261 B
Java
11 lines
261 B
Java
// "Replace iteration with bulk 'List.replaceAll' call" "false"
|
|
import java.util.*;
|
|
|
|
class Main {
|
|
void modifyStrings(List<String> strings) {
|
|
int j = 0;
|
|
for (int i = 0; i < strings.size(); i++) {
|
|
strings<caret>.set(i, strings.get(j));
|
|
}
|
|
}
|
|
} |