mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
17 lines
345 B
Java
17 lines
345 B
Java
import java.util.List;
|
|
|
|
public class Test {
|
|
|
|
public Test(Object o1, Object o2) {
|
|
}
|
|
|
|
private Object test(List<String> list) {
|
|
<selection>for (String some : list) {
|
|
String x = "x";
|
|
String y = "y";
|
|
if (some.isEmpty()) return new Test(x, y);
|
|
}</selection>
|
|
return null;
|
|
}
|
|
|
|
} |