From f399f229ae2a6fcd39f0bf553eb8d92bea1c6058 Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Wed, 28 Aug 2024 17:55:50 +0200 Subject: [PATCH] send queue: remove outdated comment The future is now, and has been for quite a while, in fact. --- crates/matrix-sdk/src/send_queue.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crates/matrix-sdk/src/send_queue.rs b/crates/matrix-sdk/src/send_queue.rs index 488b9f38f..ba77183a4 100644 --- a/crates/matrix-sdk/src/send_queue.rs +++ b/crates/matrix-sdk/src/send_queue.rs @@ -572,12 +572,6 @@ struct RoomSendQueueInner { /// When an event has been sent to the server, it is removed from that queue /// *after* being sent. That way, we will retry sending upon failure, in /// the same order events have been inserted in the first place. - /// - /// In the future, this will be replaced by a database, and this field may - /// be removed. Instead of appending to that queue / updating its - /// content / deleting entries, all that will be required will be to - /// manipulate the on-disk storage. In other words, the storage will become - /// the one source of truth. queue: QueueStorage, /// A notifier that's updated any time common data is touched (stopped or