mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
237 B
Java
13 lines
237 B
Java
class Test {
|
|
String foo(String[] args) {
|
|
<selection>
|
|
for(String arg : args) {
|
|
if (arg == null) continue;
|
|
System.out.println(arg);
|
|
}
|
|
if (args.length == 0) return null;
|
|
</selection>
|
|
return null;
|
|
}
|
|
}
|