Formatter: Remove spaces between expression and parentheses

#KT-11476 Fixed
This commit is contained in:
Kirill Rakhman
2016-03-19 14:52:17 +01:00
committed by Nikolay Krasko
parent 56477f0af8
commit 146dca2cd6
5 changed files with 20 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
fun some() {
(1)
(1 + 2)
("" as Any)
}
+5
View File
@@ -0,0 +1,5 @@
fun some() {
( 1 )
( 1 + 2 )
( "" as Any )
}