mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
21 lines
326 B
Plaintext
21 lines
326 B
Plaintext
public class a {
|
|
public void login() {
|
|
System.out.println();
|
|
}
|
|
}
|
|
|
|
class b extends a {
|
|
public void doLogin() throws Exception {
|
|
super.login();
|
|
}
|
|
|
|
public void foo() throws Exception {
|
|
new Runnable() {
|
|
public void run() {
|
|
doLogin();
|
|
}
|
|
}.run();
|
|
}
|
|
}
|
|
|