This commit is contained in:
zhangzhiqiang
2022-12-15 14:36:59 +08:00
parent a4720ea15e
commit c4844b3ad5
2 changed files with 0 additions and 10 deletions

View File

@@ -11,12 +11,4 @@ public interface LConsumer<X,Y,Z> {
void accept(X x,Y y,Z z);
default LConsumer<X,Y,Z> andThen(LConsumer<? super X, ? super Y, ? super Z> after) {
Objects.requireNonNull(after);
return (x, y, z) -> {
accept(x, y, z);
after.accept(x, y, z);
};
}
}

View File

@@ -59,6 +59,4 @@ public class PageQuery implements Serializable {
page.addOrder(item);
return page;
}
}