tests: apply official code style

#KT-38632 Fixed
This commit is contained in:
Dmitry Gridin
2020-04-28 15:51:57 +07:00
parent d8f9643650
commit 11a3482970
406 changed files with 1785 additions and 1525 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ class C {
internal fun foo() {
val builder = StringBuilder()
builder.append(1)
.append(2).append(3)
.append(4)
.append(2).append(3)
.append(4)
}
}
@@ -2,9 +2,10 @@ internal class F {
fun f1(p1: Int, p2: Int, p3: Int, p4: Int, vararg p5: Int) {}
fun f2(array: IntArray) {
f1(1, 2,
3, 4,
*array
f1(
1, 2,
3, 4,
*array
)
}
}
+2 -2
View File
@@ -1,6 +1,6 @@
interface Aaa {
fun foo(
e1: String,
e2: String
e1: String,
e2: String
)
}