mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
10 lines
242 B
Plaintext
10 lines
242 B
Plaintext
public class Varargs {
|
|
public static String join(String separator, String... texts) {
|
|
return "";
|
|
}
|
|
|
|
public void foo() {
|
|
String[] texts = new String[]{"i", "d", "e", "a"};
|
|
String s = join("", texts);
|
|
}
|
|
} |