mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-27 00:41:51 +07:00
add static import: take into account packages which should be always imported on demand (IDEA-127947)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class ImportTest{
|
||||
{
|
||||
Math.ab<caret>s(-1);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
import static java.lang.Math.*;
|
||||
|
||||
class ImportTest{
|
||||
{
|
||||
ab<caret>s(-1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user