mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
inline methods: delete static imports on method delete (IDEA-62126)
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
public class Bar {
|
||||
void bar() {
|
||||
}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
public class Foo {
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import static Foo.foo;
|
||||
public class Bar {
|
||||
void bar() {
|
||||
foo();
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
public class Foo {
|
||||
public static void foo(){}
|
||||
}
|
||||
Reference in New Issue
Block a user