增加 AbstractCacheManager.java 的注释

This commit is contained in:
许轲 2023-10-11 02:11:37 +08:00
parent db004a23b0
commit 32f8a0c189

View File

@ -7,6 +7,10 @@ import java.util.Map;
/** /**
* 抽象缓存管理类 * 抽象缓存管理类
* *
* <p>
* 该类是缓存管理的抽象基类用于管理不同类型的缓存
* </p>
*
* @author gewuyou * @author gewuyou
*/ */
public abstract class AbstractCacheManager { public abstract class AbstractCacheManager {
@ -41,7 +45,6 @@ public abstract class AbstractCacheManager {
* *
* @return 缓存集合 * @return 缓存集合
*/ */
public Map<String, Cache> getCaches() { public Map<String, Cache> getCaches() {
return caches; return caches;
} }
@ -112,5 +115,4 @@ public abstract class AbstractCacheManager {
} }
return cache.getCacheData(); return cache.getCacheData();
} }
} }