* @see
* com.basho.riak.client.raw.RawClient#delete(com.basho.riak.newapi.bucket
* .Bucket, java.lang.String, int)
*/
public void delete(String bucket, String key, int deleteQuorum) throws IOException {
HttpResponse resp = client.delete(bucket, key, RequestMeta.deleteParams(deleteQuorum));
if (!resp.isSuccess()) {
throw new IOException(resp.getBodyAsString());
}
}