mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
11 lines
262 B
Java
11 lines
262 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 s2, String s11) {
|
|
System.out.println(s2);
|
|
return s11;
|
|
}
|
|
} |