456457458459460461462463464465466
} catch (IOException e) { log.log(Level.WARNING, e.toString(), e); } try { block.commit(); } catch (IOException e) { log.log(Level.WARNING, e.toString(), e); } } }
645646647648649650651652653654655
if (block == null) { } else if (_isWrite) { try { block.commit(); } catch (Exception e) { log.log(Level.FINE, e.toString(), e); } } }
626627628629630631632633634635636