From bc7b6bdd8813df8f6608340508e64fb6e705b1ff Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 15 Oct 2020 15:29:54 -0700 Subject: [PATCH] Polish --- .../embedded/undertow/UndertowServletWebServerFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java index 852af139d2e..eefef0b6e57 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServerFactory.java @@ -248,7 +248,7 @@ public class UndertowServletWebServerFactory extends AbstractServletWebServerFac * Return if filters should be initialized eagerly. * @return {@code true} if filters are initialized eagerly, otherwise {@code false}. * @since 2.0.0 - * @deprecated since 2.4.0 in favor of #isEagerFilterInit + * @deprecated since 2.4.0 in favor of {@link #isEagerFilterInit()} */ @Deprecated public boolean isEagerInitFilters() { @@ -260,7 +260,7 @@ public class UndertowServletWebServerFactory extends AbstractServletWebServerFac * @param eagerInitFilters {@code true} if filters are initialized eagerly, otherwise * {@code false}. * @since 2.0.0 - * @deprecated since 2.4.0 in favor of #isEagerFilterInit + * @deprecated since 2.4.0 in favor of {@link #isEagerFilterInit()} */ @Deprecated public void setEagerInitFilters(boolean eagerInitFilters) {