name suggestions for static non-final fields should escape _ (IDEA-123441)

This commit is contained in:
Anna Kozlova
2014-04-04 17:55:26 +02:00
parent 8021c7cb54
commit fcd50614bb
3 changed files with 15 additions and 1 deletions
@@ -0,0 +1,9 @@
// "Create Method 'test2'" "true"
class Foo {
static String FOO_BAR = "Bar";
void test1() { test2(FOO_BAR); }
private void test2(String fooBar) {
}
}
@@ -0,0 +1,5 @@
// "Create Method 'test2'" "true"
class Foo {
static String FOO_BAR = "Bar";
void test1() { tes<caret>t2(FOO_BAR); }
}