Skip to content

Commit a53524d

Browse files
committed
Merge branch '3.5.x'
Closes gh-46475
2 parents 4f2ab9a + 6d06bc2 commit a53524d

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

core/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)