2125c42328
Removes intention version of the same thing Includes some optimization of 'Deprecated' annotation detection
10 lines
141 B
Kotlin
Vendored
10 lines
141 B
Kotlin
Vendored
package pack
|
|
|
|
import dependency.valueFromOtherPackage
|
|
|
|
<caret>@Deprecated("")
|
|
fun foo() {
|
|
bar(valueFromOtherPackage)
|
|
}
|
|
|
|
fun bar(p: Int){} |