270271272273274275276277278279280
// for (Updater updater : updaters) { Iterator it = updaters.iterator(); while (it.hasNext()) { Updater updater = (Updater) it.next(); try { updater.doUpdates(this); } catch (Throwable throwable) { throwable.printStackTrace(); } }
268269270271272273274275276277278
249250251252253254255256257258259