mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
Part of IDEA-334171 Store MockJDK in artifact repository, rather than in Git GitOrigin-RevId: 9c6214e3ead47cc164d20813f5a2b37136607213
14 lines
260 B
Java
14 lines
260 B
Java
class Test {
|
|
void foo(String[] ss, String[] bb) {
|
|
for(int i = 0; i < ss.length; i++) {
|
|
|
|
newMethod(ss[i], bb[i]);
|
|
|
|
}
|
|
}
|
|
|
|
private void newMethod(String s, String x) {
|
|
System.out.println(s);
|
|
System.out.println(x);
|
|
}
|
|
} |