b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
14 lines
308 B
Kotlin
Vendored
14 lines
308 B
Kotlin
Vendored
fun create(): String {
|
|
return "OK"
|
|
}
|
|
|
|
@Deprecated(message = "Use create() instead()", replaceWith = ReplaceWith(expression = "create()", imports = []))
|
|
fun create(s: String): String {
|
|
return create()
|
|
}
|
|
|
|
@Deprecated(message = "Use create() instead()")
|
|
fun create(b: Boolean): String {
|
|
return create()
|
|
}
|