From 55ffcab3df49e447e4f30d85e9d98afee9698645 Mon Sep 17 00:00:00 2001 From: "everywhere.z" Date: Sun, 24 Aug 2025 23:42:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=B3=A8=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/yomahub/liteflow/annotation/LiteflowRetry.java | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/liteflow-core/src/main/java/com/yomahub/liteflow/annotation/LiteflowRetry.java b/liteflow-core/src/main/java/com/yomahub/liteflow/annotation/LiteflowRetry.java index 4cef53356..2c571a4c6 100644 --- a/liteflow-core/src/main/java/com/yomahub/liteflow/annotation/LiteflowRetry.java +++ b/liteflow-core/src/main/java/com/yomahub/liteflow/annotation/LiteflowRetry.java @@ -5,8 +5,8 @@ import cn.hutool.core.annotation.MirrorFor; import java.lang.annotation.*; /** - * LiteFlow组件重试次数 - * + *

LiteFlow组件重试次数

+ *

这个注解已经被废弃,请参考EL中的retry关键字

* @author Bryan.Zhang * @since 2.6.0 */ @@ -15,11 +15,6 @@ import java.lang.annotation.*; @Documented @Inherited @Deprecated -/** - * This class has been deprecated due to its only component retry function. Please use the retry method in the EL expression. - * @Deprecated - * @see # retry(int retryTimes) e.g. THEN( a, b.retry(3) ); WHEN( a, b ).retry(3); - */ public @interface LiteflowRetry { @MirrorFor(attribute = "retry")