mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
22 lines
453 B
Java
22 lines
453 B
Java
class Bar {
|
|
|
|
void submit(Runnable r) { }
|
|
String[] foos() { return new String[0]; }
|
|
|
|
void navigateTo() {
|
|
submit(new Runnable() {
|
|
public void run() {
|
|
try {
|
|
for (Object next : foos()) {
|
|
if (next != null) {
|
|
}
|
|
}
|
|
}
|
|
catch (Throwable th) {
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|