Fixed checkstyle error

This commit is contained in:
Rsl1122 2019-08-09 09:10:39 +03:00
parent 52456bcc04
commit 723200e4ae

View File

@ -27,6 +27,10 @@ import java.util.function.Predicate;
*/ */
public class Predicates { public class Predicates {
private Predicates() {
/* static method class */
}
public static Predicate<DateHolder> within(long after, long before) { public static Predicate<DateHolder> within(long after, long before) {
return holder -> { return holder -> {
long date = holder.getDate(); long date = holder.getDate();