From 3ad0e77db8018bc55f23bef6ea4f0799a4f98e8e Mon Sep 17 00:00:00 2001 From: abaudat Date: Mon, 14 Aug 2023 13:20:25 +0200 Subject: [PATCH 1/2] Align javadoc of AbstractFilterRegistrationBean#setDispatcherTypes See gh-36965 --- .../boot/web/servlet/AbstractFilterRegistrationBean.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/AbstractFilterRegistrationBean.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/AbstractFilterRegistrationBean.java index 45ea170184..fc4ec35b11 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/AbstractFilterRegistrationBean.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/AbstractFilterRegistrationBean.java @@ -169,9 +169,7 @@ public abstract class AbstractFilterRegistrationBean extends D } /** - * Sets the dispatcher types that should be used with the registration. If not - * specified the types will be deduced based on the value of - * {@link #isAsyncSupported()}. + * Sets the dispatcher types that should be used with the registration. * @param dispatcherTypes the dispatcher types */ public void setDispatcherTypes(EnumSet dispatcherTypes) { From e043fe434a0cb3e89eccaa08e918083d4c96e4b7 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 14 Aug 2023 15:13:32 +0200 Subject: [PATCH 2/2] Update copyright year of changed file See gh-36965 --- .../boot/web/servlet/AbstractFilterRegistrationBean.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/AbstractFilterRegistrationBean.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/AbstractFilterRegistrationBean.java index fc4ec35b11..05066172d0 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/AbstractFilterRegistrationBean.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/AbstractFilterRegistrationBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2020 the original author or authors. + * Copyright 2012-2023 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.