Browse Source

Merge branch '3.4.x' into 3.5.x

Closes gh-46474
pull/46511/head
Phillip Webb 6 months ago
parent
commit
6d06bc22d1
  1. 3
      spring-boot-project/spring-boot/src/main/java/org/springframework/boot/util/LambdaSafe.java

3
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/util/LambdaSafe.java

@ -146,8 +146,9 @@ public final class LambdaSafe { @@ -146,8 +146,9 @@ public final class LambdaSafe {
* type.
* @param filter the filter to use
* @return this instance
* @since 3.4.8
*/
SELF withFilter(Filter<C, A> filter) {
public SELF withFilter(Filter<C, A> filter) {
Assert.notNull(filter, "'filter' must not be null");
this.filter = filter;
return self();

Loading…
Cancel
Save