2125c42328
Removes intention version of the same thing Includes some optimization of 'Deprecated' annotation detection
7 lines
101 B
Plaintext
Vendored
7 lines
101 B
Plaintext
Vendored
@Deprecated("", <caret>ReplaceWith("bar()"))
|
|
fun foo() {
|
|
// invoke bar()
|
|
bar()
|
|
}
|
|
|
|
fun bar(){} |