use of com.thinkaurelius.titan.diskstorage.util.KeyColumn in project incubator-atlas by apache.
the class HBaseTransaction method deleteAllLocks.
private void deleteAllLocks() {
for (KeyColumn kc : keyColumnLocks) {
log.debug("Removed lock {} ", kc);
llm.unlock(kc, this);
}
}
Aggregations