Make LambdaSafe.Filter public

See gh-46472
This commit is contained in:
Phillip Webb 2025-07-22 09:50:28 +01:00
parent 465e811f23
commit 3968d31f01
1 changed files with 2 additions and 1 deletions

View File

@ -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.