// Interposed Syncs First and then the regular syncs
Enumeration e1 = interposedSyncs.elements();
while (e1.hasMoreElements()) {
Synchronization sync = (Synchronization) e1.nextElement();
try {
sync.afterCompletion(result);
} catch (Exception ex) {
_logger.log(Level.WARNING,
"jts.unexpected_error_occurred_in_after_completion",ex);
}
}