mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
17 lines
310 B
Java
17 lines
310 B
Java
class Test {
|
|
|
|
void f(String strings) {
|
|
extract("a", "b", "c", "d");
|
|
}
|
|
|
|
private static void extract(final String from, final String to, final String... extensions) {
|
|
|
|
<selection>foo(extensions)</selection>;
|
|
}
|
|
|
|
public String foo(String[] extensions) {
|
|
return null
|
|
}
|
|
|
|
}
|