mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-20 11:50:49 +07:00
15 lines
233 B
Java
15 lines
233 B
Java
class Main {
|
|
private String [] args;
|
|
|
|
void foo(Main m, int i) {
|
|
newMethod(m.args[i]);
|
|
|
|
}
|
|
|
|
private void newMethod(String arg) {
|
|
if (arg != null) {
|
|
System.out.println(arg);
|
|
}
|
|
}
|
|
}
|