only Connection should take care of default host, port

This commit is contained in:
Jungtaek Lim
2014-10-09 08:51:42 +09:00
parent b2fcbed66f
commit 5575f08076
4 changed files with 6 additions and 4 deletions

View File

@@ -23,7 +23,9 @@ public class Jedis extends BinaryJedis implements JedisCommands,
protected Pool<Jedis> dataSource = null;
public Jedis() {}
public Jedis() {
super();
}
public Jedis(final String host) {
super(host);