mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 12:17:12 +07:00
IDEA-121828 (Add single member static import intention should be available on incomplete code)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Add static import for 'java.lang.Math.abs'" "true"
|
||||
package test;
|
||||
|
||||
import static java.lang.Math.abs;
|
||||
|
||||
class X {{
|
||||
abs();
|
||||
}}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Add static import for 'java.lang.Math.abs'" "true"
|
||||
package test;
|
||||
|
||||
class X {{
|
||||
Math.abs<caret>();
|
||||
}}
|
||||
Reference in New Issue
Block a user