8 lines
174 B
Kotlin
8 lines
174 B
Kotlin
class Test {
|
|
class object {
|
|
public fun toFileSystemSafeName(name: String): String {
|
|
val size = name.length()
|
|
return name
|
|
}
|
|
}
|
|
} |