Refactoring: "package matching directory" is now an inspection
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
<caret>package source
|
||||
|
||||
class Foo
|
||||
|
||||
fun foo() {
|
||||
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
static void test() {
|
||||
new source.Foo();
|
||||
source.TestKt.foo();
|
||||
}
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
fun test() {
|
||||
source.Foo()
|
||||
source.foo()
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import source.Foo;
|
||||
import static source.TestKt.foo;
|
||||
|
||||
class Test {
|
||||
static void test() {
|
||||
new Foo();
|
||||
foo();
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import source.Foo
|
||||
import source.foo
|
||||
|
||||
fun test() {
|
||||
Foo()
|
||||
foo()
|
||||
}
|
||||
Reference in New Issue
Block a user