From eba5f16e09ef124d8ee5f957f5e6fe4a93b352f6 Mon Sep 17 00:00:00 2001 From: Ginger Date: Tue, 28 Oct 2025 13:40:01 -0400 Subject: [PATCH] chore: Remove unneeded comment --- src/api/client/sync/v3/joined.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/api/client/sync/v3/joined.rs b/src/api/client/sync/v3/joined.rs index 9ab26b56..8864f7fe 100644 --- a/src/api/client/sync/v3/joined.rs +++ b/src/api/client/sync/v3/joined.rs @@ -57,16 +57,6 @@ pub(super) async fn load_joined_room( sync_context: SyncContext<'_>, ref room_id: OwnedRoomId, ) -> Result<(JoinedRoom, DeviceListUpdates)> { - /* - this is a large function with a lot of logic. we try to parallelize as much as possible - by fetching data concurrently, so the code is roughly split into stages separated by calls to `join`. - - 1. `current_shortstatehash` and `since_shortstatehash` are fetched from the DB. a shortstatehash is - a token which identifies the state of the room at a point in time. - 2. `load_timeline` is called to fetch timeline events that happened since `since`. - 3. - */ - let SyncContext { sender_user, since,