mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
17 lines
309 B
Java
17 lines
309 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>new Foo(extensions)</selection>;
|
|
}
|
|
|
|
private static class Foo {
|
|
public Foo(String[] extensions) {
|
|
}
|
|
}
|
|
}
|