mirror of
https://github.com/Eaglercraft-Archive/Eaglercraftx-1.8.8-src.git
synced 2025-06-27 18:38:14 -05:00
Update #24 - 1000s of optimizations, shared worlds on desktop
This commit is contained in:
@ -41,7 +41,8 @@ public class ListenableFutureTask<V> extends FutureTask<V> implements Listenable
|
||||
}
|
||||
|
||||
protected void done() {
|
||||
for(Runnable r : listeners) {
|
||||
for(int i = 0, l = listeners.size(); i < l; ++i) {
|
||||
Runnable r = listeners.get(i);
|
||||
try {
|
||||
r.run();
|
||||
}catch(Throwable t) {
|
||||
|
Reference in New Issue
Block a user