mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
15 lines
297 B
Java
15 lines
297 B
Java
// "Replace with collect" "false"
|
|
import java.util.*;
|
|
|
|
public class Test {
|
|
public void foo() throws Exception {}
|
|
|
|
public static void bar(List<Test> currentImportLine) throws Exception {
|
|
for (Test test : currentImp<caret>ortLine) {
|
|
if (true) {
|
|
test.foo();
|
|
}
|
|
}
|
|
}
|
|
}
|