mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
pessimistic approach for now: even if the condition consists of array access only; do not depend on the order of found references GitOrigin-RevId: 0d111aad6b69729404183520d1f4d01cba583a1c
15 lines
243 B
Java
15 lines
243 B
Java
class Main {
|
|
private String [] args;
|
|
|
|
void foo(Main m, int i) {
|
|
newMethod(m, i);
|
|
|
|
}
|
|
|
|
private void newMethod(Main m, int i) {
|
|
if (m.args[i] != null) {
|
|
System.out.println(m.args[i]);
|
|
}
|
|
}
|
|
}
|