Formatter: Don't enforce empty line between secondary constructors without body (KT-12175)

#KT-12175 Fixed
This commit is contained in:
Nikolay Krasko
2016-05-04 15:28:55 +03:00
committed by Nikolay Krasko
parent 52cd7109c7
commit b107bc401c
13 changed files with 18 additions and 9 deletions
+8
View File
@@ -26,6 +26,14 @@ constructor() {}
constructor() : this() {}
constructor():this() {}
constructor(a: Int) : this()
constructor(a: Byte) : this()
constructor(): this ()
constructor(): super(){}
constructor(): this ()
constructor(): super(){}
}