Skip to content

Commit

Permalink
Fix log message in RecordPagedList
Browse files Browse the repository at this point in the history
  • Loading branch information
fmarco76 committed May 14, 2024
1 parent 64406c3 commit b70f51c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public RecordPagedList(DBPagedSearch<T> pages) {
try {
pageEntries = pages.getPage().iterator();
} catch (EBaseException e) {
throw new RuntimeException("CertRecordPagedList: Error to get a new page", e);
throw new RuntimeException("RecordPagedList: Error to get a new page", e);
}
}

Expand All @@ -65,7 +65,7 @@ public boolean hasNext() {
List<T> newPage = pages.getPage();
pageEntries = newPage.iterator();
} catch (EBaseException e) {
throw new RuntimeException("CertRecordPagedList: Error to get a new page", e);
throw new RuntimeException("RecordPagedList: Error to get a new page", e);
}
}
return pageEntries.hasNext();
Expand Down

0 comments on commit b70f51c

Please sign in to comment.