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