2125c42328
Removes intention version of the same thing Includes some optimization of 'Deprecated' annotation detection
10 lines
137 B
Kotlin
Vendored
10 lines
137 B
Kotlin
Vendored
<caret>@Deprecated("")
|
|
fun foo(p: Int) {
|
|
if (p > 0)
|
|
bar1(p)
|
|
else
|
|
bar2(p)
|
|
}
|
|
|
|
fun bar1(p: Int){}
|
|
fun bar2(p: Int){} |