clippy fix

This commit is contained in:
Donjuanplatinum
2026-02-27 20:05:45 +08:00
committed by Jason Volk
parent cbbe370df2
commit e178c12b6e

View File

@@ -139,7 +139,7 @@ impl<F: Fn(u64) -> Result + Sync> State<F> {
/// Retire the sequence number `id`. /// Retire the sequence number `id`.
fn retire(&mut self, id: u64) { fn retire(&mut self, id: u64) {
debug_assert!(self.check_pending(id), "sequence number must be currently pending",); debug_assert!(self.check_pending(id), "sequence number must be currently pending");
let index = self let index = self
.pending_index(id) .pending_index(id)