mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 18:13:59 +07:00
GitOrigin-RevId: 3eba22a8685ecb6905a867ff68b9f96f7438140d
12 lines
227 B
Java
12 lines
227 B
Java
class X {
|
|
Runnable r = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
extracted();
|
|
}
|
|
|
|
private static void extracted() {
|
|
System.out.println("hello");
|
|
}
|
|
};
|
|
} |