mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 04:03:20 +07:00
GitOrigin-RevId: 4a9f84d48d5fea93696262df333f6964c89cf757
22 lines
424 B
Java
22 lines
424 B
Java
public class DuplicateWithAnonymousMethodReference {
|
|
|
|
void test(){
|
|
Runnable task = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
extracted();
|
|
|
|
extracted();
|
|
}
|
|
|
|
private void extracted() {
|
|
local();
|
|
System.out.println();
|
|
}
|
|
|
|
public void local() {
|
|
}
|
|
};
|
|
}
|
|
}
|