diff --git a/src/main/java/redis/clients/util/Pool.java b/src/main/java/redis/clients/util/Pool.java index ab21d30..522fa01 100644 --- a/src/main/java/redis/clients/util/Pool.java +++ b/src/main/java/redis/clients/util/Pool.java @@ -9,7 +9,11 @@ import redis.clients.jedis.exceptions.JedisException; public abstract class Pool { protected GenericObjectPool internalPool; - protected Pool() { + /** + * Using this constructor means you have to set + * the internalPool yourself. + */ + public Pool() { this.internalPool = null; }