mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-27 00:41:51 +07:00
add single import: ensure current ref to import is taken into account when check the limit (IDEA-127949)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import static java.lang.Math.abs;
|
||||
import static java.lang.Math.sin;
|
||||
|
||||
class ImportTest {
|
||||
{
|
||||
abs(-0.5);
|
||||
sin(0.5);
|
||||
Math.ma<caret>x(1, 2);
|
||||
Math.min(1, 2);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import static java.lang.Math.*;
|
||||
|
||||
class ImportTest {
|
||||
{
|
||||
abs(-0.5);
|
||||
sin(0.5);
|
||||
ma<caret>x(1, 2);
|
||||
Math.min(1, 2);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user