Converter:
Use formatter in converter tests Reformat test data
This commit is contained in:
@@ -1,19 +1,20 @@
|
||||
package demo
|
||||
|
||||
class Container() {
|
||||
var myInt : Int = 1
|
||||
var myInt: Int = 1
|
||||
}
|
||||
class One() {
|
||||
class object {
|
||||
var myContainer : Container = Container()
|
||||
class object {
|
||||
var myContainer: Container = Container()
|
||||
}
|
||||
}
|
||||
}
|
||||
class IntContainer(i : Int) {
|
||||
class IntContainer(i: Int) {
|
||||
}
|
||||
class Test() {
|
||||
fun putInt(i : Int) {
|
||||
}
|
||||
fun test() {
|
||||
putInt(One.myContainer.myInt)
|
||||
IntContainer(One.myContainer.myInt)
|
||||
}
|
||||
fun putInt(i: Int) {
|
||||
}
|
||||
fun test() {
|
||||
putInt(One.myContainer.myInt)
|
||||
IntContainer(One.myContainer.myInt)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user