rename suggestions: suggest new names for non-variables (IDEA-121982)

This commit is contained in:
Anna Kozlova
2014-03-12 10:07:16 +01:00
parent 5b8ebf6a41
commit f64d2394d2
4 changed files with 42 additions and 13 deletions
@@ -0,0 +1,7 @@
class MyTest {
static class Foo {
}
static Foo get<caret>_i() { return null; }
}
@@ -0,0 +1,7 @@
class MyTest {
static class Foo {
}
static Foo getI() { return null; }
}