mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
210 B
Plaintext
15 lines
210 B
Plaintext
public class A {
|
|
void test() {
|
|
String[] myValue = CONST;
|
|
}
|
|
|
|
void callTest() {
|
|
test();
|
|
}
|
|
|
|
void callTest2() {
|
|
test();
|
|
}
|
|
|
|
public static final String[] CONST = new String[] { "A", "B" };
|
|
} |