Browse Source

Make LambdaSafe.Filter public

See gh-46472
pull/46604/head
Phillip Webb 6 months ago
parent
commit
3968d31f01
  1. 3
      spring-boot-project/spring-boot/src/main/java/org/springframework/boot/util/LambdaSafe.java

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

@ -313,9 +313,10 @@ public final class LambdaSafe { @@ -313,9 +313,10 @@ public final class LambdaSafe {
*
* @param <C> the callback type
* @param <A> the primary argument type
* @since 3.4.8
*/
@FunctionalInterface
interface Filter<C, A> {
public interface Filter<C, A> {
/**
* Determine if the given callback matches and should be invoked.

Loading…
Cancel
Save