mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 05:20:30 +07:00
GitOrigin-RevId: 3aae5c738d48c38144f6a78c36738121831ae5a5
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;
|
|
}
|
|
} |