mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 02:39:37 +07:00
22 lines
416 B
Java
22 lines
416 B
Java
// "Convert to local" "true"
|
|
import java.util.ArrayList;
|
|
|
|
class ITest {
|
|
|
|
private ArrayList<String> may<caret>BeLocal = new ArrayList<String>();
|
|
|
|
public IntelliJBugConvertToLocal(int x, int z) {
|
|
|
|
if (x == 5) {
|
|
mayBeLocal.add("jjj");
|
|
}
|
|
|
|
if (x > z) {
|
|
useIt(mayBeLocal);
|
|
}
|
|
}
|
|
@SuppressWarnings("UnusedParameters")
|
|
private void useIt(Object data) {
|
|
System.out.println(data);
|
|
}
|
|
} |