return (path.delete());
}
@Override
public void remove(String locationKey, Triple item) {
final Number160 hash = Number160.createHash(locationKey);
FutureDHT request;
l.log(TYPE_REMOVE, String.format("Peer %s: remove item %s in key: %s",
p, item, locationKey), 10);
final Number160 contentKey = Number160.createHash(item.toString());
request = p.remove(hash).setContentKey(contentKey)
.setReturnResults(false).start();
request.awaitUninterruptibly();
logger.debug(String.format("Remove triple in key %s (%s)", locationKey,
hash));