inline methods: delete static imports on method delete (IDEA-62126)

This commit is contained in:
anna
2010-12-22 22:25:20 +03:00
parent 9010b36338
commit 0654693bcf
6 changed files with 90 additions and 0 deletions
@@ -0,0 +1,4 @@
public class Bar {
void bar() {
}
}
@@ -0,0 +1,2 @@
public class Foo {
}
@@ -0,0 +1,6 @@
import static Foo.foo;
public class Bar {
void bar() {
foo();
}
}
@@ -0,0 +1,3 @@
public class Foo {
public static void foo(){}
}