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

@@ -777,11 +777,6 @@ public class Client extends BinaryClient implements Commands {
restore(SafeEncoder.encode(key), ttl, serializedValue);
}
@Deprecated
public void pexpire(final String key, final int milliseconds) {
pexpire(key, (long) milliseconds);
}
public void pexpire(final String key, final long milliseconds) {
pexpire(SafeEncoder.encode(key), milliseconds);
}