mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 10:21:05 +07:00
9 lines
172 B
Java
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) {
|
|
|
|
}
|
|
} |