JavaJoinListAction: do not suggest intention when comments exists

GitOrigin-RevId: ad790d5b4abde39deea670873eb4b34f2a01828c
This commit is contained in:
Roman.Ivanov
2019-07-09 14:02:07 +03:00
committed by intellij-monorepo-bot
parent a29b9f588c
commit 1783bbf417
3 changed files with 32 additions and 1 deletions
@@ -0,0 +1,11 @@
// "Put arguments on one line" "false"
class A {
void foo(int a1, int a2, int a3) {
foo(
12, // 12
23,<caret>
4
);
}
}