Skip to content

Commit 14db1ad

Browse files
committed
Make LambdaSafe.withFilter public
Fixes gh-46472
1 parent 2688342 commit 14db1ad

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)