From 3968d31f012dce38d0d7bcc7e369d6dd46f7b6cc Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 22 Jul 2025 09:50:28 +0100 Subject: [PATCH] Make LambdaSafe.Filter public See gh-46472 --- .../main/java/org/springframework/boot/util/LambdaSafe.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/util/LambdaSafe.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/util/LambdaSafe.java index 272e580451c..b302a6ded39 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/util/LambdaSafe.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/util/LambdaSafe.java @@ -313,9 +313,10 @@ public final class LambdaSafe { * * @param the callback type * @param the primary argument type + * @since 3.4.8 */ @FunctionalInterface - interface Filter { + public interface Filter { /** * Determine if the given callback matches and should be invoked.