mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 22:09:57 +07:00
22 lines
460 B
Java
22 lines
460 B
Java
public 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) {
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|