diff --git a/crates/notedeck/src/filter.rs b/crates/notedeck/src/filter.rs index bd9f107b..9f5e6f82 100644 --- a/crates/notedeck/src/filter.rs +++ b/crates/notedeck/src/filter.rs @@ -142,12 +142,6 @@ impl FilterState { Self::Ready(HybridFilter::unsplit(filter)) } - /// The filter is ready, but we have a different local filter from - /// our remote one - pub fn ready_split(local: Vec, remote: Vec) -> Self { - Self::Ready(HybridFilter::split(local, remote)) - } - /// Our hybrid filter is ready (either split or unsplit) pub fn ready_hybrid(filter: HybridFilter) -> Self { Self::Ready(filter) @@ -260,10 +254,6 @@ impl HybridFilter { } impl FilteredTags { - pub fn into_follow_filter(self) -> Vec { - self.into_filter([1], default_limit()) - } - // TODO: make this more general pub fn into_filter(self, kinds: I, limit: u64) -> Vec where