mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-20 11:50:49 +07:00
11 lines
254 B
Java
11 lines
254 B
Java
class Test {
|
|
void h(int i, String[] s, String[] t) {
|
|
final String s1 = newMethod(t[i], s[t[i].length()]);
|
|
System.out.println(s1);
|
|
}
|
|
|
|
private String newMethod(String x, String s) {
|
|
System.out.println(x);
|
|
return s;
|
|
}
|
|
} |