mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
10 lines
202 B
Java
10 lines
202 B
Java
// "Remove redundant 'else'" "true"
|
|
class T {
|
|
static void foo(boolean something) {
|
|
if (something) {
|
|
return;
|
|
} // a
|
|
System.out.println(); // b
|
|
// c
|
|
}
|
|
} |