mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
IDEA-136452 Can't surround with {} code starting from the comment under if statement
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
class Test {
|
||||
void m() {
|
||||
if (true)
|
||||
<selection> // comment
|
||||
System.out.println();</selection>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class Test {
|
||||
void m() {
|
||||
if (true) {
|
||||
// comment
|
||||
System.out.println();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user