Formatter: Don't enforce empty line between secondary constructors without body (KT-12175)
#KT-12175 Fixed
This commit is contained in:
committed by
Nikolay Krasko
parent
52cd7109c7
commit
b107bc401c
-1
@@ -4,7 +4,6 @@ open class <caret>A(n: Int) {
|
||||
|
||||
open class B: A {
|
||||
constructor(n: Int) : super(n)
|
||||
|
||||
constructor(b: Boolean, n: Int): super(n)
|
||||
}
|
||||
|
||||
|
||||
-1
@@ -5,7 +5,6 @@ open class A {
|
||||
|
||||
open class B: A {
|
||||
constructor(n: Int) : super(n)
|
||||
|
||||
constructor(b: Boolean, n: Int): super(n)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user