From a0417f6409be43eb8fa695ebb8f3e12d373606ef Mon Sep 17 00:00:00 2001 From: wangyu <727842003@qq.com> Date: Tue, 16 Jul 2024 17:18:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=E7=89=B9=E5=AE=9A?= =?UTF-8?q?=E5=9C=BA=E6=99=AF=E6=96=AD=E8=B7=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../beans/meta/parser/chain/impl/EmptyAnnotationChain.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flyfish-bean/src/main/java/dev/flyfish/framework/beans/meta/parser/chain/impl/EmptyAnnotationChain.java b/flyfish-bean/src/main/java/dev/flyfish/framework/beans/meta/parser/chain/impl/EmptyAnnotationChain.java index abf3d45..211f8cf 100644 --- a/flyfish-bean/src/main/java/dev/flyfish/framework/beans/meta/parser/chain/impl/EmptyAnnotationChain.java +++ b/flyfish-bean/src/main/java/dev/flyfish/framework/beans/meta/parser/chain/impl/EmptyAnnotationChain.java @@ -65,6 +65,7 @@ public class EmptyAnnotationChain extends BasicAnnotati */ @Override public BeanPropertyAnnotationChain then(Consumer consumer) { + parent.last(false); return this; } @@ -76,6 +77,7 @@ public class EmptyAnnotationChain extends BasicAnnotati */ @Override public BeanPropertyAnnotationChain exists(Runnable handler) { + parent.last(false); return this; }