From 87d25bd0fd07eff60941fc2ef6f1d0974dfca5ca Mon Sep 17 00:00:00 2001 From: jchen293 Date: Thu, 4 Jan 2024 16:31:46 -0500 Subject: [PATCH] fix lint --- src/main/java/com/easypost/service/UserService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/easypost/service/UserService.java b/src/main/java/com/easypost/service/UserService.java index dbb737e35..44d67a57f 100644 --- a/src/main/java/com/easypost/service/UserService.java +++ b/src/main/java/com/easypost/service/UserService.java @@ -164,7 +164,8 @@ public ChildUserCollection allChildren(final Map params) throws * @return ChildUserCollection object. * @throws EndOfPaginationError when there are no more pages to retrieve. */ - public ChildUserCollection getNextPage(ChildUserCollection collection, Integer pageSize) throws EndOfPaginationError { + public ChildUserCollection getNextPage(ChildUserCollection collection, Integer pageSize) + throws EndOfPaginationError { return collection.getNextPage(new Function, ChildUserCollection>() { @Override @SneakyThrows public ChildUserCollection apply(Map parameters) {