Skip to content

Commit 6d06bc2

Browse files
committed
Merge branch '3.4.x' into 3.5.x
Closes gh-46474
2 parents bd6e3ea + 14db1ad commit 6d06bc2

File tree

1 file changed

+2
-1
lines changed
  • spring-boot-project/spring-boot/src/main/java/org/springframework/boot/util

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,9 @@ public SELF withLogger(Log logger) {
146146
* type.
147147
* @param filter the filter to use
148148
* @return this instance
149+
* @since 3.4.8
149150
*/
150-
SELF withFilter(Filter<C, A> filter) {
151+
public SELF withFilter(Filter<C, A> filter) {
151152
Assert.notNull(filter, "'filter' must not be null");
152153
this.filter = filter;
153154
return self();

0 commit comments

Comments
 (0)