From 2ecd54a3b2916efea1d67e4b74f1899d5d47e48a Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 17 Jun 2024 13:08:59 +0200 Subject: [PATCH] chore(base): Remove `BoxStream` as it's never used. This patch removes the public type alias `BoxedStream` which is never used in our code. --- crates/matrix-sdk-base/src/store/mod.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/matrix-sdk-base/src/store/mod.rs b/crates/matrix-sdk-base/src/store/mod.rs index 5e908e6b3..fd1da84ec 100644 --- a/crates/matrix-sdk-base/src/store/mod.rs +++ b/crates/matrix-sdk-base/src/store/mod.rs @@ -24,7 +24,6 @@ use std::{ collections::{BTreeMap, BTreeSet}, fmt, ops::Deref, - pin::Pin, result::Result as StdResult, str::Utf8Error, sync::{Arc, RwLock as StdRwLock}, @@ -53,9 +52,6 @@ use ruma::{ }; use tokio::sync::{broadcast, Mutex, RwLock}; -/// BoxStream of owned Types -pub type BoxStream = Pin + Send>>; - use crate::{ rooms::{normal::RoomInfoUpdate, RoomInfo, RoomState}, MinimalRoomMemberEvent, Room, RoomStateFilter, SessionMeta,