From 164389116642ee9a1eed77ec666d6194cfe5e6b9 Mon Sep 17 00:00:00 2001 From: LamGC Date: Tue, 29 Sep 2020 10:11:11 +0800 Subject: [PATCH] =?UTF-8?q?[Change]=20CacheStore-redis=20=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E5=86=85=E9=83=A8=E7=B1=BB=20RedisConnectionPool=20?= =?UTF-8?q?=E7=9A=84=E8=AE=BF=E9=97=AE=E4=BF=AE=E9=A5=B0=E7=AC=A6;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [Change] RedisConnectionPool 调整访问修饰符(public -> default); --- .../java/net/lamgc/cgj/bot/cache/redis/RedisConnectionPool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ContentGrabbingJi-CacheStore-redis/src/main/java/net/lamgc/cgj/bot/cache/redis/RedisConnectionPool.java b/ContentGrabbingJi-CacheStore-redis/src/main/java/net/lamgc/cgj/bot/cache/redis/RedisConnectionPool.java index 63c5aa3..1ad0abb 100644 --- a/ContentGrabbingJi-CacheStore-redis/src/main/java/net/lamgc/cgj/bot/cache/redis/RedisConnectionPool.java +++ b/ContentGrabbingJi-CacheStore-redis/src/main/java/net/lamgc/cgj/bot/cache/redis/RedisConnectionPool.java @@ -30,7 +30,7 @@ import java.util.function.Function; * 统一的 Redis 连接池. * @author LamGC */ -public class RedisConnectionPool { +class RedisConnectionPool { private final static Logger log = LoggerFactory.getLogger(RedisConnectionPool.class); private final static AtomicReference POOL = new AtomicReference<>();