mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
create static method from usage in interface (IDEA-127563)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// "Create Method 'f'" "true"
|
||||
interface X {
|
||||
public static void m() {
|
||||
f();
|
||||
}
|
||||
|
||||
static void f() {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Create Method 'f'" "true"
|
||||
interface X {
|
||||
public static void m() {
|
||||
f<caret>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user