Drop DeprecatedFacadeUsageInspection
(cherry picked from commit f18b95d)
This commit is contained in:
committed by
Dmitry Petrov
parent
93bb010875
commit
bb77890a4e
@@ -1 +0,0 @@
|
||||
org.jetbrains.kotlin.idea.inspections.DeprecatedFacadeUsageInspection
|
||||
@@ -1,8 +0,0 @@
|
||||
// "Replace with new-style facade class" "true"
|
||||
import facade.Basic_before_data_facadeKt;
|
||||
|
||||
class A {
|
||||
void bar() {
|
||||
Basic_before_data_facadeKt.foo();
|
||||
}
|
||||
}
|
||||
-8
@@ -1,8 +0,0 @@
|
||||
// "Replace with new-style facade class" "true"
|
||||
import facade.FacadePackage;
|
||||
|
||||
class A {
|
||||
void bar() {
|
||||
FacadePackage.<caret>foo();
|
||||
}
|
||||
}
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
package facade
|
||||
|
||||
fun foo() {
|
||||
}
|
||||
-8
@@ -1,8 +0,0 @@
|
||||
// "Replace with new-style facade class" "true"
|
||||
import facade.StaticImport_before_data_facadeKt;
|
||||
|
||||
class A {
|
||||
void bar() {
|
||||
StaticImport_before_data_facadeKt.foo();
|
||||
}
|
||||
}
|
||||
-8
@@ -1,8 +0,0 @@
|
||||
// "Replace with new-style facade class" "true"
|
||||
import static facade.FacadePackage.foo;
|
||||
|
||||
class A {
|
||||
void bar() {
|
||||
<caret>foo();
|
||||
}
|
||||
}
|
||||
Vendored
-4
@@ -1,4 +0,0 @@
|
||||
package facade
|
||||
|
||||
fun foo() {
|
||||
}
|
||||
Reference in New Issue
Block a user