e6f4d6e6fa
^KT-65406
15 lines
309 B
Kotlin
Vendored
15 lines
309 B
Kotlin
Vendored
fun create(): String {
|
|
return "OK"
|
|
}
|
|
|
|
@Deprecated(message = "Use create() instead()")
|
|
fun create(b: Boolean): String {
|
|
return create()
|
|
}
|
|
|
|
@Deprecated(message = "Use create() instead()", replaceWith = ReplaceWith(expression = "create()", imports = []))
|
|
fun create(s: String): String {
|
|
return create()
|
|
}
|
|
|