mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 238b34892819401c23a6853f81e5664779e00136
13 lines
219 B
Java
13 lines
219 B
Java
public class Test {
|
|
static void staticContext() {
|
|
extracted();
|
|
}
|
|
|
|
void nonStaticContext() {
|
|
extracted();
|
|
}
|
|
|
|
private static void extracted() {
|
|
System.out.println("hi");
|
|
}
|
|
} |