mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 20:49:52 +07:00
18 lines
333 B
Java
18 lines
333 B
Java
class Test {
|
|
|
|
void f(String strings) {
|
|
final String[] strings1 = new String[]{"c", "d"};
|
|
extract("a", "b", strings1);
|
|
}
|
|
|
|
private static void extract(final String from, final String to, String[] anObject) {
|
|
|
|
new Foo(anObject);
|
|
}
|
|
|
|
private static class Foo {
|
|
public Foo(String[] extensions) {
|
|
}
|
|
}
|
|
}
|