Preserve comment right after the loop

GitOrigin-RevId: e096580618c805f0e1f5c8e1a878b5e3321174c7
This commit is contained in:
Tagir Valeev
2020-06-23 13:11:19 +03:00
committed by intellij-monorepo-bot
parent b2c6daba06
commit 1f6ad2d2bb
3 changed files with 9 additions and 3 deletions
@@ -12,7 +12,7 @@ class Test {
}
}
}
}
}//Comment
}
void foo(boolean b) {}
@@ -4,7 +4,7 @@ class Test {
fo<caret>r(Object x : new Object[] {"one", 1, 1.0, 1.0f}) {
if(Math.random() > 0.5) break;
System.out.println(x);
}
}//Comment
}
void foo(boolean b) {}