IDEA-121828 (Add single member static import intention should be available on incomplete code)

This commit is contained in:
Bas Leijdekkers
2014-03-07 16:53:49 +01:00
parent 6d2515cf2f
commit 54fccb5efd
3 changed files with 49 additions and 26 deletions

View File

@@ -0,0 +1,8 @@
// "Add static import for 'java.lang.Math.abs'" "true"
package test;
import static java.lang.Math.abs;
class X {{
abs();
}}

View File

@@ -0,0 +1,6 @@
// "Add static import for 'java.lang.Math.abs'" "true"
package test;
class X {{
Math.abs<caret>();
}}