mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-25 02:49:03 +00:00
Merge branch '3.4.x' into 3.5.x
Closes gh-46474
This commit is contained in:
+2
-1
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user