mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
233 B
Java
12 lines
233 B
Java
import java.util.List;
|
|
|
|
class C {
|
|
void m(List<String> list) {
|
|
int i = 0;
|
|
System.out.println(<selection>i</selection>);
|
|
|
|
if (list.size() > 0) {
|
|
System.out.println(list.size());
|
|
}
|
|
}
|
|
} |