Converter:
Preserve white spaces for top members (classes, package statements, comments)
This commit is contained in:
committed by
Pavel V. Talanov
parent
098a80a2af
commit
d69c61c972
@@ -1,6 +1,7 @@
|
||||
class Base() {
|
||||
private var myFirst: String = 0
|
||||
}
|
||||
|
||||
class Child() : Base() {
|
||||
private var mySecond: String = 0
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
open class Base() {
|
||||
private var myFirst: String? = null
|
||||
}
|
||||
|
||||
open class Child() : Base() {
|
||||
private var mySecond: String? = null
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
class C() {
|
||||
private var f: Foo = 0
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
open class C() {
|
||||
private var f: Foo? = null
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user