mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-26 00:11:33 +07:00
replace all members with static import method (IDEA-90040)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import static java.lang.String.format;
|
||||
|
||||
// "Static Import Method 'java.lang.String.format'" "true"
|
||||
public class X {
|
||||
{
|
||||
format("");
|
||||
format("");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Static Import Method 'java.lang.String.format'" "true"
|
||||
public class X {
|
||||
{
|
||||
String.format("");
|
||||
<caret>format("");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user