mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
45 lines
651 B
Java
45 lines
651 B
Java
import java.lang.Exception;
|
|
|
|
class Foo {
|
|
|
|
void m() {
|
|
|
|
try {
|
|
|
|
} catch (Exception e) {
|
|
|
|
} <warning descr="Redundant block marker">//end try-catch</warning>
|
|
|
|
try {
|
|
|
|
} catch (Exception e) {
|
|
|
|
} <warning descr="Redundant block marker">// endtrycatchblockmarker</warning>
|
|
|
|
try {
|
|
|
|
} catch (Exception e) {
|
|
|
|
} <warning descr="Redundant block marker">// endtrycatchblockmarker</warning>
|
|
|
|
try {
|
|
|
|
} catch (Exception e) {
|
|
|
|
} finally {
|
|
|
|
} <warning descr="Redundant block marker">// end finally</warning>
|
|
|
|
try {
|
|
|
|
} catch (Exception e) {
|
|
|
|
} finally {
|
|
|
|
}
|
|
// end
|
|
// not a block marker
|
|
|
|
}
|
|
|
|
} |