From 9e4a66ca7077518380b559c8cd6d17a0c1c7de6a Mon Sep 17 00:00:00 2001 From: LamGC Date: Sat, 17 Oct 2020 12:01:07 +0800 Subject: [PATCH] =?UTF-8?q?[Change]=20CacheStore-local=20=E6=9B=B4?= =?UTF-8?q?=E6=94=B9=E7=BB=84=E4=BB=B6=E5=90=8D;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [Change] LocalCacheStoreFactory 更改组件名('local' -> 'local-memory'); --- .../net/lamgc/cgj/bot/cache/local/LocalCacheStoreFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ContentGrabbingJi-CacheStore-local/src/main/java/net/lamgc/cgj/bot/cache/local/LocalCacheStoreFactory.java b/ContentGrabbingJi-CacheStore-local/src/main/java/net/lamgc/cgj/bot/cache/local/LocalCacheStoreFactory.java index 32a0b23..7cdd464 100644 --- a/ContentGrabbingJi-CacheStore-local/src/main/java/net/lamgc/cgj/bot/cache/local/LocalCacheStoreFactory.java +++ b/ContentGrabbingJi-CacheStore-local/src/main/java/net/lamgc/cgj/bot/cache/local/LocalCacheStoreFactory.java @@ -26,7 +26,7 @@ import net.lamgc.cgj.bot.cache.convert.StringConverter; * 最简单的缓存实现, 无持久化功能. * @author LamGC */ -@Factory(name = "Local", priority = FactoryPriority.PRIORITY_LOWEST, source = CacheStoreSource.MEMORY) +@Factory(name = "Local-Memory", priority = FactoryPriority.PRIORITY_LOWEST, source = CacheStoreSource.MEMORY) public class LocalCacheStoreFactory implements CacheStoreFactory { @Override