Don't indent closing parenthesis in conditions

#KT-21485 Fixed
This commit is contained in:
Dmitry Jemerov
2017-11-28 13:51:30 +01:00
parent 26d47a034e
commit 67cd4ed17a
4 changed files with 41 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
fun foo() {
if (longCond1 &&
longCond2
) {
}
}
+6
View File
@@ -0,0 +1,6 @@
fun foo() {
if (longCond1 &&
longCond2
) {
}
}