mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
10 lines
238 B
Java
10 lines
238 B
Java
// "Replace the loop with 'List.replaceAll'" "false"
|
|
import java.util.List;
|
|
|
|
class Main {
|
|
void modifyStrings(List<String> strings) {
|
|
for<caret> (int i = 0; i < strings.size(); i++) {
|
|
strings.set(i, strings.get(i));
|
|
}
|
|
}
|
|
} |