239240241242243244245246247248249250
throws SQLException { super.flush(batch); synchronized (assignIds) { synchronized (ids) { HashBatch hb = (HashBatch)batch; for (Long hash : hb.getHashes()) { ids.remove(hash); } } } }
231232233234235236237238239240241242