Inlay hints: do not chop list in presence of comments: IDEA-218083

GitOrigin-RevId: e442ad27055bb59888f2173150ac95de75b7f87b
This commit is contained in:
Roman.Ivanov
2019-07-12 08:28:33 +03:00
committed by intellij-monorepo-bot
parent 3d3c719d7a
commit 5652d26604
5 changed files with 36 additions and 10 deletions
@@ -0,0 +1,8 @@
// "Put arguments on separate lines" "false"
class A {
void foo(String s, String s1) {
foo("a", // !!!<caret>
"b");
}
}