3c859caf2b
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
8 lines
131 B
Kotlin
8 lines
131 B
Kotlin
class A {
|
|
fun foo(s: String?): Int {
|
|
if (s != null) {
|
|
return s.length()
|
|
}
|
|
return -1
|
|
}
|
|
} |