ReplaceJavaStaticMethodWithKotlinAnalogInspection: introduce Transform interface

#KT-32454 Fixed
This commit is contained in:
Dmitry Gridin
2019-07-09 11:53:10 +03:00
parent 835532c206
commit 3aa2401f19
45 changed files with 169 additions and 230 deletions
@@ -2,5 +2,5 @@
fun foo() {
val b = listOf(42, 10)
println(Integer<caret>.toString(b.first(), b.last()).let{it} + 1)
println(Integer.<caret>toString(b.first(), b.last()).let{it} + 1)
}
@@ -1,5 +1,5 @@
// WITH_RUNTIME
fun foo() {
Integer<caret>.toString(42 + 24, 16)
Integer.<caret>toString(42 + 24, 16)
}