mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
disable add single static import when on demand exists (IDEA-62321)
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
// "Add static import for 'test.Bar.f'" "false"
|
||||
package test;
|
||||
|
||||
import static test.Bar.*;
|
||||
|
||||
class Bar {
|
||||
public static final void f() {}
|
||||
}
|
||||
public class Foo extends FooSuper{
|
||||
{
|
||||
Bar.<caret>f();
|
||||
}
|
||||
}
|
||||
|
||||
class FooSuper {
|
||||
public static final void f(int i) {}
|
||||
}
|
||||
Reference in New Issue
Block a user