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