From 56edc00458318349b78f5a9c3b4a5a0d379cf3b5 Mon Sep 17 00:00:00 2001 From: zuojunlin Date: Wed, 22 Nov 2023 00:30:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E9=99=90=E6=B5=81=E6=8A=BD=E8=B1=A1?= =?UTF-8?q?=E7=B1=BB=E5=8E=BB=E6=8E=89=E6=97=A5=E5=BF=97=E6=B3=A8=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../retry/server/common/flow/control/AbstractFlowControl.java | 3 --- 1 file changed, 3 deletions(-) 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 0c71c2129..48ee6e6f7 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) {