Remove extra commas made redundent after rustfmt (#9404)

* Remove extra commas made redundent after rustfmt
This commit is contained in:
Squirrel
2021-07-22 11:06:17 +01:00
committed by GitHub
parent e18f388dac
commit aafe64315a
101 changed files with 309 additions and 309 deletions
@@ -264,7 +264,7 @@ impl<B: BlockT> Future for GossipEngine<B> {
match sink.start_send(notification.clone()) {
Ok(()) => {},
Err(e) if e.is_full() =>
unreachable!("Previously ensured that all sinks are ready; qed.",),
unreachable!("Previously ensured that all sinks are ready; qed."),
// Receiver got dropped. Will be removed in next iteration (See (1)).
Err(_) => {},
}
@@ -624,7 +624,7 @@ mod tests {
.or_insert(1);
},
Poll::Ready(None) =>
unreachable!("Sender side of channel is never dropped",),
unreachable!("Sender side of channel is never dropped"),
Poll::Pending => {},
}
}