16c82030a3
Unconditionally changing it to @Deprecated("") in kotlin
22 lines
276 B
Kotlin
Vendored
22 lines
276 B
Kotlin
Vendored
class Deprecation {
|
|
@Deprecated("")
|
|
fun deprecate00() {
|
|
}
|
|
|
|
@Deprecated("")
|
|
fun deprecate10() {
|
|
}
|
|
|
|
@Deprecated("")
|
|
fun deprecate20() {
|
|
}
|
|
|
|
@Deprecated("")
|
|
fun deprecate01() {
|
|
}
|
|
|
|
@Deprecated("")
|
|
fun deprecate21() {
|
|
}
|
|
}
|