diff --git a/easy-retry-server/easy-retry-server-common/src/main/java/com/aizuda/easy/retry/server/common/flow/control/AbstractFlowControl.java b/easy-retry-server/easy-retry-server-common/src/main/java/com/aizuda/easy/retry/server/common/flow/control/AbstractFlowControl.java index 0c71c212..48ee6e6f 100644 --- a/easy-retry-server/easy-retry-server-common/src/main/java/com/aizuda/easy/retry/server/common/flow/control/AbstractFlowControl.java +++ b/easy-retry-server/easy-retry-server-common/src/main/java/com/aizuda/easy/retry/server/common/flow/control/AbstractFlowControl.java @@ -2,8 +2,6 @@ package com.aizuda.easy.retry.server.common.flow.control; import com.aizuda.easy.retry.server.common.FlowControl; import com.google.common.cache.Cache; import com.google.common.util.concurrent.RateLimiter; -import lombok.extern.slf4j.Slf4j; - import java.util.Objects; @@ -12,7 +10,6 @@ import java.util.Objects; * @date : 2023-11-21 13:04 * @since 2.5.0 */ -@Slf4j public abstract class AbstractFlowControl implements FlowControl { public RateLimiter getRateLimiter(Cache rateLimiterCache, String key, double rateLimiterThreshold) {