From 61c83be6b3ba4e1ea5dee71bf06dfb74cfb942dc Mon Sep 17 00:00:00 2001 From: Max Inden Date: Thu, 19 Oct 2023 13:38:41 +0200 Subject: [PATCH] Remove outdated todo --- protocols/perf/src/client/handler.rs | 1 - protocols/perf/src/lib.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/protocols/perf/src/client/handler.rs b/protocols/perf/src/client/handler.rs index b8626e4a58d..2bdb5426f6c 100644 --- a/protocols/perf/src/client/handler.rs +++ b/protocols/perf/src/client/handler.rs @@ -171,7 +171,6 @@ impl ConnectionHandler for Handler { Self::Error, >, > { - // Return queued events. if let Some(event) = self.queued_events.pop_front() { return Poll::Ready(event); } diff --git a/protocols/perf/src/lib.rs b/protocols/perf/src/lib.rs index 18212819136..9cb086754fc 100644 --- a/protocols/perf/src/lib.rs +++ b/protocols/perf/src/lib.rs @@ -51,7 +51,6 @@ pub struct Progressed { impl Display for Progressed { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let Progressed { - // TODO: A single duration for both up and down is not ideal. duration, sent, received,