mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 04:20:56 +07:00
15 lines
186 B
Java
15 lines
186 B
Java
// "Remove redundant 'else'" "true-preview"
|
|
class a {
|
|
void foo() {
|
|
int a = 0;
|
|
int b = 0;
|
|
if (a != b) {
|
|
return;
|
|
} e<caret>lse {
|
|
a = b;
|
|
}
|
|
a++;
|
|
}
|
|
}
|
|
|