Files
openide/java/java-tests/testData/codeInsight/joinLines/IfBlockWithComment_after.java
Tagir Valeev cb7790bead [java] BlockJoinLinesHandler: avoid removing block when there's only comment inside (IDEA-264288)
GitOrigin-RevId: dad4d5ffb573d186463589162adbd2fcd610157d
2021-03-15 08:48:08 +00:00

8 lines
108 B
Java

class C {
private static void fn(boolean cond) {
if (cond) {// comment
} else {
}
}
}