Skip to content

Commit

Permalink
errorprone :: CheckedExceptionNotThrown in JournalReader
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb committed Sep 18, 2024
1 parent e402c8d commit 5299618
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public Journal getJournal() throws IOException {
}

// read long followed by null sep. return -1 if any issues
private long getSequence() throws IOException {
private long getSequence() {
long seq = b.getLong();
if (b.get() != SEP) {
return -1;
Expand Down

0 comments on commit 5299618

Please sign in to comment.