From 59dd8f2d28873803ebc76219f49dcfc2c9154e95 Mon Sep 17 00:00:00 2001 From: QwQ-dev Date: Fri, 27 Dec 2024 20:13:50 +0800 Subject: [PATCH] docs: format specifications. --- .../service/multi/FlexibleMultiLevelCacheService.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cache/src/main/java/net/legacy/library/cache/service/multi/FlexibleMultiLevelCacheService.java b/cache/src/main/java/net/legacy/library/cache/service/multi/FlexibleMultiLevelCacheService.java index e2d97e2..bf6f3db 100644 --- a/cache/src/main/java/net/legacy/library/cache/service/multi/FlexibleMultiLevelCacheService.java +++ b/cache/src/main/java/net/legacy/library/cache/service/multi/FlexibleMultiLevelCacheService.java @@ -12,7 +12,7 @@ * A flexible multi-level cache service that manages multiple {@link TieredCacheLevel} instances. * * @author qwq-dev - * @since 2024-12-27 + * @since 2024-12-27 19:15 */ public class FlexibleMultiLevelCacheService extends AbstractLockableCache>> { /** @@ -45,8 +45,8 @@ public FlexibleMultiLevelCacheService(Set> tieredCacheLev /** * Applies a function to the underlying cache of a specific level (without lock). - *

- * This method looks up the {@link TieredCacheLevel} by the provided level identifier, and if found, + * + *

This method looks up the {@link TieredCacheLevel} by the provided level identifier, and if found, * applies the given function to the cache. * * @param level the identifier of the cache level @@ -66,8 +66,8 @@ public R applyFunctionWithoutLock(L level, Function cacheMapping /** * Applies a function to the underlying cache of a specific level (with lock). - *

- * This method obtains the lock from the targeted cache (using the provided function), + * + *

This method obtains the lock from the targeted cache (using the provided function), * then executes the desired operation via {@link #execute(Function, Function, LockSettings)} * of the parent class {@link AbstractLockableCache}. *