create static method from usage in interface (IDEA-127563)

This commit is contained in:
Anna Kozlova
2014-07-21 19:04:30 +02:00
parent 124d7744d4
commit 91f505e2f7
5 changed files with 30 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
// "Create Method 'f'" "true"
interface X {
public static void m() {
f();
}
static void f() {
}
}

View File

@@ -0,0 +1,6 @@
// "Create Method 'f'" "true"
interface X {
public static void m() {
f<caret>();
}
}