mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-13 11:36:53 +07:00
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;
|
|
}
|
|
}
|
|
|