mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 22:20:24 +07:00
6e8742ed2a
GitOrigin-RevId: 3d20d29f9b7e2f0a3a989991af2788572449b0de
11 lines
171 B
Java
11 lines
171 B
Java
// "Remove local variable 'foo'" "true"
|
|
class a {
|
|
private int refactorTest(int i) {
|
|
int f<caret>oo = 0;
|
|
int bar = 0;
|
|
if (i >0) foo++;
|
|
return bar;
|
|
}
|
|
}
|
|
|