if (isMonitoring) {
// Run all the registered updates
// 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();
}
}