Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/afterParameterNameFirstSuggestion.java
2014-12-06 12:06:31 +03:00

9 lines
172 B
Java

// "Create method 'test2'" "true"
class Foo {
static String FOO_BAR = "Bar";
void test1() { test2(FOO_BAR); }
private void test2(String fooBar) {
}
}