ReplaceJavaStaticMethodWithKotlinAnalogInspection: remove non-implemented cases

This commit is contained in:
Dmitry Gridin
2019-07-09 13:12:42 +03:00
parent 632158cd52
commit 026949a758
8 changed files with 11 additions and 76 deletions
@@ -1,9 +0,0 @@
// WITH_RUNTIME
fun test() {
val a = arrayOf(2)
val b = arrayOf(4)
val aOffset = 1
val bOffset = 2
val len = 5
java.lang.System.<caret>arraycopy(a, aOffset, b, bOffset, len)
}
@@ -1,9 +0,0 @@
// WITH_RUNTIME
fun test() {
val a = arrayOf(2)
val b = arrayOf(4)
val aOffset = 1
val bOffset = 2
val len = 5
a.copyInto(b, bOffset, aOffset, len + aOffset)
}