Skip to content

Instantly share code, notes, and snippets.

View xjjon's full-sized avatar

Jon xjjon

View GitHub Profile
package filters;
import java.util.List;
@AllArgsConstructor
public class AndFilter implements Filter {
private final List<Filter> filters;
@Override