From 34142ac265324741ccdef212ee7db589efb3e130 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Thu, 16 Oct 2025 11:59:54 +0200 Subject: [PATCH] clippy --- crates/project/src/project_search.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/project/src/project_search.rs b/crates/project/src/project_search.rs index a05a3f9acf4795f5e964aaaa5b18642d1d00ea0d..6a9fcdc0dcabba2b1a1e360543d361f2a293b723 100644 --- a/crates/project/src/project_search.rs +++ b/crates/project/src/project_search.rs @@ -193,8 +193,8 @@ impl Search { } /// Background workers cannot open buffers by themselves, hence main thread will do it on their behalf. - async fn open_buffers<'a>( - &'a self, + async fn open_buffers( + &self, rx: Receiver, find_all_matches_tx: Sender>, mut cx: AsyncApp,