Converter:

Preserve white spaces for top members (classes, package statements, comments)
This commit is contained in:
Pavel Talanov
2013-12-09 19:59:49 +04:00
committed by Pavel V. Talanov
parent 098a80a2af
commit d69c61c972
101 changed files with 162 additions and 34 deletions
@@ -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 -1
View File
@@ -1,3 +1,3 @@
open class C() {
private var f: Foo? = null
}
}