Preserve formatting of parenthesis in calls too

This commit is contained in:
Valentin Kipyatkov
2016-08-19 22:13:58 +03:00
parent 87294207f9
commit 38edb58e60
15 changed files with 173 additions and 111 deletions
@@ -5,6 +5,7 @@ class F {
void f2(int[] array) {
f1(1, 2,
3, 4,
array);
array
);
}
}