Merge branch '3.4.x' into 3.5.x

Closes gh-46474
This commit is contained in:
Phillip Webb
2025-07-21 17:36:52 +01:00
@@ -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();