remove watch from transaction

This commit is contained in:
Jonathan Leibiusky
2011-05-30 14:23:20 -03:00
parent 891e018093
commit 6aa216f8cf
2 changed files with 2 additions and 7 deletions

View File

@@ -390,7 +390,7 @@ public class BinaryTransaction extends Queable {
}
public Response<String> substr(byte[] key, int start, int end) { // what's
// that?
// that?
client.substr(key, start, end);
return getResponse(BuilderFactory.STRING);
}
@@ -415,11 +415,6 @@ public class BinaryTransaction extends Queable {
return getResponse(BuilderFactory.STRING);
}
public Response<String> watch(byte[]... keys) {
client.watch(keys);
return getResponse(BuilderFactory.STRING);
}
public Response<Long> zadd(byte[] key, double score, byte[] member) {
client.zadd(key, score, member);
return getResponse(BuilderFactory.LONG);