mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 14:09:12 +07:00
788e8bbed1
GitOrigin-RevId: cc0f0ec45152c1923836d6eee770b15685bf15e1
11 lines
199 B
Java
11 lines
199 B
Java
interface Foo {
|
|
private void bar() {
|
|
new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
System.out.println(Foo.this);
|
|
}
|
|
};
|
|
}
|
|
}
|