mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-15 11:58:18 +07:00
apply chop arguments for calls only
GitOrigin-RevId: 327173f16c882df5d72743d3bee2bb114f069d58
This commit is contained in:
committed by
intellij-monorepo-bot
parent
0751454160
commit
002e7efd27
+9
@@ -0,0 +1,9 @@
|
||||
// "Put arguments on separate lines" "false"
|
||||
|
||||
class A {
|
||||
void foo(int a1, int a2, Runnable r) {
|
||||
foo(1, 2, () -> {
|
||||
<caret>
|
||||
})
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
// "Put arguments on separate lines" "false"
|
||||
|
||||
class A {
|
||||
void foo() {
|
||||
int size = 0;
|
||||
for (int i = 0; i < size; i++, i++<caret>, i++) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user