mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 05:18:02 +07:00
GitOrigin-RevId: 1f0944cffba9b286e2a152d83e9d12a1a9da02bc
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" };
|
|
} |