mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
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");
|
|
}
|
|
};
|
|
} |