741e031ff1
Use formatter in converter tests Reformat test data
8 lines
196 B
Kotlin
8 lines
196 B
Kotlin
open class Test() {
|
|
class object {
|
|
public open fun toFileSystemSafeName(name: String?): String? {
|
|
var size: Int = name?.length()!!
|
|
return name
|
|
}
|
|
}
|
|
} |