using super instead of this to keep the code style

This commit is contained in:
Nykolas Lima
2014-10-08 17:37:29 -03:00
parent 833065b670
commit f7789213df
3 changed files with 3 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ import redis.clients.util.SafeEncoder;
public class Client extends BinaryClient implements Commands {
public Client() {
this(Protocol.DEFAULT_HOST, Protocol.DEFAULT_PORT);
super(Protocol.DEFAULT_HOST, Protocol.DEFAULT_PORT);
}
public Client(final String host) {