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