add static import: take into account packages which should be always imported on demand (IDEA-127947)

This commit is contained in:
Anna.Kozlova
2018-07-30 11:31:42 +02:00
parent 793f759366
commit f73b89ad6a
7 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class ImportTest{
{
Math.ab<caret>s(-1);
}
}

View File

@@ -0,0 +1,7 @@
import static java.lang.Math.*;
class ImportTest{
{
ab<caret>s(-1);
}
}