[Change] CacheStore-redis 调整内部类 RedisConnectionPool 的访问修饰符;

[Change] RedisConnectionPool 调整访问修饰符(public -> default);
This commit is contained in:
LamGC 2020-09-29 10:11:11 +08:00
parent 1c634af225
commit 1643891166
Signed by: LamGC
GPG Key ID: 6C5AE2A913941E1D

View File

@ -30,7 +30,7 @@ import java.util.function.Function;
* 统一的 Redis 连接池. * 统一的 Redis 连接池.
* @author LamGC * @author LamGC
*/ */
public class RedisConnectionPool { class RedisConnectionPool {
private final static Logger log = LoggerFactory.getLogger(RedisConnectionPool.class); private final static Logger log = LoggerFactory.getLogger(RedisConnectionPool.class);
private final static AtomicReference<JedisPool> POOL = new AtomicReference<>(); private final static AtomicReference<JedisPool> POOL = new AtomicReference<>();