Converter:
Use formatter in converter tests Reformat test data
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
class B(i : Int) {
|
||||
fun call() : Int {
|
||||
return 1
|
||||
}
|
||||
class B(i: Int) {
|
||||
fun call(): Int {
|
||||
return 1
|
||||
}
|
||||
}
|
||||
class A() : B(10) {
|
||||
override fun call() : Int {
|
||||
return super.call()
|
||||
}
|
||||
override fun call(): Int {
|
||||
return super.call()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user