Format spaces before enum arguments

Fixes #KT-12714
This commit is contained in:
Kirill Rakhman
2016-06-20 19:54:01 +02:00
committed by Nikolay Krasko
parent a520be5509
commit b560aab06d
4 changed files with 18 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
enum class Test(val foo: Int) {
One(1),
Two(2),
Three(3)
}
+5
View File
@@ -0,0 +1,5 @@
enum class Test(val foo: Int) {
One(1),
Two (2),
Three (3)
}