mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 15:53:38 +07:00
GitOrigin-RevId: 1f278179d51e1dac3cb2992a3ec85c98ac208b31
11 lines
260 B
Java
11 lines
260 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 s11) {
|
|
System.out.println(x);
|
|
return s11;
|
|
}
|
|
} |