mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
name suggestions for static non-final fields should escape _ (IDEA-123441)
This commit is contained in:
@@ -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); }
|
||||
}
|
||||
Reference in New Issue
Block a user