remove old API usage inspection

This commit is contained in:
Dmitry Jemerov
2016-01-27 18:29:19 +01:00
parent e79ad386ef
commit 95683bbf38
12 changed files with 0 additions and 233 deletions
-1
View File
@@ -1 +0,0 @@
org.jetbrains.kotlin.idea.inspections.OldStdlibApiInspection
@@ -1,10 +0,0 @@
// "Replace with new qualified name" "true"
// WITH_RUNTIME
import kotlin.collections.ArraysKt;
class C {
public void foo(byte[] bytes) {
ArraysKt.component1(bytes);
}
}
@@ -1,10 +0,0 @@
// "Replace with new qualified name" "true"
// WITH_RUNTIME
import kotlin.ArraysKt;
class C {
public void foo(byte[] bytes) {
<caret>ArraysKt.component1(bytes);
}
}
@@ -1,10 +0,0 @@
// "Replace with new qualified name" "true"
// WITH_RUNTIME
import static kotlin.collections.ArraysKt<caret>.component1;
class C {
public void foo(byte[] bytes) {
component1(bytes);
}
}
@@ -1,10 +0,0 @@
// "Replace with new qualified name" "true"
// WITH_RUNTIME
import static kotlin.ArraysKt<caret>.component1;
class C {
public void foo(byte[] bytes) {
component1(bytes);
}
}
@@ -1,10 +0,0 @@
// "Replace with new qualified name" "true"
// WITH_RUNTIME
import kotlin.jvm.JvmClassMappingKt;
class C {
public void foo(Class cls) {
<caret>JvmClassMappingKt.getKotlinClass(cls);
}
}
@@ -1,10 +0,0 @@
// "Replace with new qualified name" "true"
// WITH_RUNTIME
import kotlin.jvm.ClassMapping;
class C {
public void foo(Class cls) {
<caret>ClassMapping.getKotlin(cls);
}
}