IDEA-108072 (Don't suggest to add on-demand static import for the current class)

This commit is contained in:
Bas Leijdekkers
2014-03-06 19:15:40 +01:00
parent 8d6f72b2ca
commit 557cca9d2d
3 changed files with 32 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
// "Add on demand static import for 'test.Foo'" "true"
package test;
class Foo {
public static void m() {}
public static void main(String[] args) {
m();
}
}

View File

@@ -0,0 +1,10 @@
// "Add on demand static import for 'test.Foo'" "true"
package test;
class Foo {
public static void m() {}
public static void main(String[] args) {
Foo<caret>.m();
}
}