Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen293 committed Jan 4, 2024
1 parent affe39b commit 87d25bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/easypost/service/UserService.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ public ChildUserCollection allChildren(final Map<String, Object> 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<Map<String, Object>, ChildUserCollection>() {
@Override @SneakyThrows
public ChildUserCollection apply(Map<String, Object> parameters) {
Expand Down

0 comments on commit 87d25bd

Please sign in to comment.