Converter:
Use formatter in converter tests Reformat test data
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
class Base() {
|
||||
private var myFirst : String = 0
|
||||
private var myFirst: String = 0
|
||||
}
|
||||
class Child() : Base() {
|
||||
private var mySecond : String = 0
|
||||
private var mySecond: String = 0
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
open class Base() {
|
||||
private var myFirst : String? = null
|
||||
private var myFirst: String? = null
|
||||
}
|
||||
open class Child() : Base() {
|
||||
private var mySecond : String? = null
|
||||
private var mySecond: String? = null
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
class C() {
|
||||
var f : Foo = 0
|
||||
var f: Foo = 0
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
open class C() {
|
||||
var f : Foo? = null
|
||||
var f: Foo? = null
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
class C() {
|
||||
private var f : Foo = 0
|
||||
private var f: Foo = 0
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
open class C() {
|
||||
private var f : Foo? = null
|
||||
private var f: Foo? = null
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
class C() {
|
||||
protected var f : Foo = 0
|
||||
protected var f: Foo = 0
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
open class C() {
|
||||
protected var f : Foo? = null
|
||||
protected var f: Foo? = null
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
class C() {
|
||||
public var f : Foo = 0
|
||||
public var f: Foo = 0
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
open class C() {
|
||||
public var f : Foo? = null
|
||||
public var f: Foo? = null
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
class C() {
|
||||
val f : Foo = Foo(1, 2)
|
||||
val f: Foo = Foo(1, 2)
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
open class C() {
|
||||
val f : Foo = Foo(1, 2)
|
||||
val f: Foo = Foo(1, 2)
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
class C() {
|
||||
var f : Foo = Foo(1, 2)
|
||||
var f: Foo = Foo(1, 2)
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
open class C() {
|
||||
var f : Foo? = Foo(1, 2)
|
||||
var f: Foo? = Foo(1, 2)
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
class C() {
|
||||
var f : Foo = 0
|
||||
var f: Foo = 0
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
open class C() {
|
||||
var f : Foo? = null
|
||||
var f: Foo? = null
|
||||
}
|
||||
Reference in New Issue
Block a user