mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 19:58:23 +07:00
IDEA-108072 (Don't suggest to add on-demand static import for the current class)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user