2125c42328
Removes intention version of the same thing Includes some optimization of 'Deprecated' annotation detection
8 lines
124 B
Plaintext
Vendored
8 lines
124 B
Plaintext
Vendored
class C {
|
|
@Deprecated("", ReplaceWith("bar()"))
|
|
val foo: String
|
|
get() = bar()
|
|
|
|
fun bar(): String = ""
|
|
}
|