mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 13:35:58 +07:00
GitOrigin-RevId: b6a0879ba137c4a375c2b3258d7afc9217d4d153
12 lines
175 B
Java
12 lines
175 B
Java
interface Test {
|
|
|
|
class Nested {
|
|
void test(){
|
|
extracted();
|
|
}
|
|
}
|
|
|
|
private static void extracted() {
|
|
System.out.println();
|
|
}
|
|
} |