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

@@ -1091,11 +1091,6 @@ public class BinaryClient extends Connection {
sendCommand(RESTORE, key, toByteArray(ttl), serializedValue);
}
@Deprecated
public void pexpire(final byte[] key, final int milliseconds) {
pexpire(key, (long) milliseconds);
}
public void pexpire(final byte[] key, final long milliseconds) {
sendCommand(PEXPIRE, key, toByteArray(milliseconds));
}