mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
14 lines
168 B
Java
14 lines
168 B
Java
// "Remove redundant 'else'" "true-preview"
|
|
class a {
|
|
void foo() {
|
|
int a = 0;
|
|
int b = 0;
|
|
if (a != b) {
|
|
return;
|
|
}
|
|
a = b;
|
|
a++;
|
|
}
|
|
}
|
|
|