mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
32 lines
439 B
Java
32 lines
439 B
Java
class Foo {
|
|
|
|
void m() {
|
|
|
|
if (true) {
|
|
|
|
} else {
|
|
|
|
} <warning descr="Redundant block marker">//endif</warning>
|
|
|
|
if (true) {
|
|
|
|
} <warning descr="Redundant block marker">// end if</warning>
|
|
|
|
if (true) {
|
|
|
|
} else {
|
|
|
|
} //it's not block comment (it's not starts wigh "end")
|
|
|
|
if (true) {
|
|
|
|
}
|
|
// it's not block comment (it's located under if block)
|
|
|
|
if (true) { // it's not block comment
|
|
|
|
|
|
}
|
|
}
|
|
|
|
} |