Remove deprecated pexpire(key, int) methods

This commit is contained in:
Aniket Schneider
2014-03-05 16:59:11 -05:00
parent e7285ade5c
commit 92f6785a58
5 changed files with 0 additions and 30 deletions

View File

@@ -1080,16 +1080,6 @@ abstract class PipelineBase extends Queable implements BinaryRedisPipeline,
return getResponse(BuilderFactory.LONG);
}
@Deprecated
public Response<Long> pexpire(String key, int milliseconds) {
return pexpire(key, (long) milliseconds);
}
@Deprecated
public Response<Long> pexpire(byte[] key, int milliseconds) {
return pexpire(key, (long) milliseconds);
}
public Response<Long> pexpire(String key, long milliseconds) {
getClient(key).pexpire(key, milliseconds);
return getResponse(BuilderFactory.LONG);