fix: 优化特定场景断路

This commit is contained in:
wangyu 2024-07-16 17:18:31 +08:00
parent 7ac9fdd8e3
commit a0417f6409

View File

@ -65,6 +65,7 @@ public class EmptyAnnotationChain<A extends Annotation, T> extends BasicAnnotati
*/
@Override
public BeanPropertyAnnotationChain<A, T> then(Consumer<T> consumer) {
parent.last(false);
return this;
}
@ -76,6 +77,7 @@ public class EmptyAnnotationChain<A extends Annotation, T> extends BasicAnnotati
*/
@Override
public BeanPropertyAnnotationChain<A, T> exists(Runnable handler) {
parent.last(false);
return this;
}