[Change] CacheStore-local 更改组件名;

[Change] LocalCacheStoreFactory 更改组件名('local' -> 'local-memory');
This commit is contained in:
LamGC 2020-10-17 12:01:07 +08:00
parent 78b234237f
commit 9e4a66ca70
Signed by: LamGC
GPG Key ID: 6C5AE2A913941E1D

View File

@ -26,7 +26,7 @@ import net.lamgc.cgj.bot.cache.convert.StringConverter;
* 最简单的缓存实现, 无持久化功能. * 最简单的缓存实现, 无持久化功能.
* @author LamGC * @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 { public class LocalCacheStoreFactory implements CacheStoreFactory {
@Override @Override