From f6cb90593dc9158b5341df9b920982bd81edd549 Mon Sep 17 00:00:00 2001 From: RoloEdits Date: Sat, 22 Mar 2025 00:00:39 -0700 Subject: [PATCH] chore(worker): remove unused lifetime on `EventAccumulator` (#13158) --- helix-vcs/src/diff/worker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-vcs/src/diff/worker.rs b/helix-vcs/src/diff/worker.rs index 578d8b8e7..2b6466f63 100644 --- a/helix-vcs/src/diff/worker.rs +++ b/helix-vcs/src/diff/worker.rs @@ -94,7 +94,7 @@ struct EventAccumulator { render_lock: Option, } -impl<'a> EventAccumulator { +impl EventAccumulator { fn new() -> EventAccumulator { EventAccumulator { diff_base: None,