mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
15 lines
302 B
Java
15 lines
302 B
Java
class C {
|
|
boolean test(boolean b) {
|
|
boolean f = <warning descr="Variable 'f' initializer 'false' is redundant">false</warning>;
|
|
try {
|
|
if (b) throw new RuntimeException();
|
|
f = true;
|
|
}
|
|
catch (RuntimeException e) {
|
|
throw e;
|
|
}
|
|
finally {
|
|
}
|
|
return f;
|
|
}
|
|
} |