Skip to content

Commit bc971e5

Browse files
committed
fix checkstyle
1 parent 0a24395 commit bc971e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bookkeeper-server/src/main/java/org/apache/bookkeeper/bookie/storage/ldb/SingleDirectoryDbLedgerStorage.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -700,14 +700,14 @@ private void fillReadAheadCache(long originalLedgerId, long firstEntryId, long f
700700
}
701701
dbLedgerStorageStats.getReadAheadBatchCountStats().registerSuccessfulValue(count);
702702
dbLedgerStorageStats.getReadAheadBatchSizeStats().registerSuccessfulValue(size);
703-
recordSuccessfulEvent(dbLedgerStorageStats.getReadAheadTime(),readAheadStartNano);
703+
recordSuccessfulEvent(dbLedgerStorageStats.getReadAheadTime(), readAheadStartNano);
704704
} catch (Exception e) {
705705
if (log.isDebugEnabled()) {
706706
log.debug("Exception during read ahead for ledger: {}: e", originalLedgerId, e);
707707
}
708708
dbLedgerStorageStats.getReadAheadBatchCountStats().registerFailedValue(count);
709709
dbLedgerStorageStats.getReadAheadBatchSizeStats().registerFailedValue(size);
710-
recordFailedEvent(dbLedgerStorageStats.getReadAheadTime(),readAheadStartNano);
710+
recordFailedEvent(dbLedgerStorageStats.getReadAheadTime(), readAheadStartNano);
711711
}
712712
}
713713

0 commit comments

Comments
 (0)