mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
12 lines
234 B
Java
12 lines
234 B
Java
import java.util.List;
|
|
|
|
class Test {
|
|
public static void foo(List<String> args, int i) {
|
|
newMethod("hi");
|
|
newMethod(args.get(i));
|
|
}
|
|
|
|
private static void newMethod(String hi) {
|
|
System.out.println(hi);
|
|
}
|
|
} |