ReplaceJavaStaticMethodWithKotlinAnalogInspection: introduce Transform interface
#KT-32454 Fixed
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
// WITH_RUNTIME
|
||||
import java.util.Arrays.hashCode
|
||||
|
||||
fun test() {
|
||||
val a = arrayOf(1)
|
||||
val hash = <caret>hashCode(a)
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
// WITH_RUNTIME
|
||||
import java.util.Arrays.hashCode
|
||||
|
||||
fun test() {
|
||||
val a = arrayOf(1)
|
||||
val hash = <caret>a.contentHashCode()
|
||||
}
|
||||
Reference in New Issue
Block a user