List of usage examples for java.util.concurrent ConcurrentSkipListMap remove
public V remove(Object key)
From source file:com.palantir.atlasdb.keyvalue.impl.InMemoryKeyValueService.java
@Override public void delete(String tableName, Multimap<Cell, Long> keys) { ConcurrentSkipListMap<Key, byte[]> table = getTableMap(tableName).entries; for (Map.Entry<Cell, Long> e : keys.entries()) { table.remove(new Key(e.getKey(), e.getValue())); }/*from www .j a va2 s . c om*/ }