mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
15 lines
292 B
Java
15 lines
292 B
Java
// "Replace with forEach" "false"
|
|
|
|
import java.io.FileInputStream;
|
|
import java.io.FileNotFoundException;
|
|
import java.util.*;
|
|
|
|
class A {
|
|
public void foo(final Set<String> strings) throws FileNotFoundException {
|
|
for (String s : str<caret>ings) {
|
|
new FileInputStream();
|
|
}
|
|
|
|
}
|
|
|
|
} |