notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 1b9e77a1ff6da2b3b3f10582711ebbf84b9dcac9
parent 28634301b858f0e605d2a5f93556e7e76215e9eb
Author: kernelkind <kernelkind@gmail.com>
Date:   Sun,  7 Sep 2025 16:59:30 -0400

filter: remove unused code

Signed-off-by: kernelkind <kernelkind@gmail.com>

Diffstat:
Mcrates/notedeck/src/filter.rs | 10----------
1 file changed, 0 insertions(+), 10 deletions(-)

diff --git 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<Filter>, remote: Vec<Filter>) -> 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<Filter> { - self.into_filter([1], default_limit()) - } - // TODO: make this more general pub fn into_filter<I>(self, kinds: I, limit: u64) -> Vec<Filter> where