Unnamed repository; edit this file 'description' to name the repository.
chore(worker): remove unused lifetime on `EventAccumulator` (#13158)
| -rw-r--r-- | helix-vcs/src/diff/worker.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-vcs/src/diff/worker.rs b/helix-vcs/src/diff/worker.rs index 578d8b8e..2b6466f6 100644 --- a/helix-vcs/src/diff/worker.rs +++ b/helix-vcs/src/diff/worker.rs @@ -94,7 +94,7 @@ struct EventAccumulator { render_lock: Option<RenderLock>, } -impl<'a> EventAccumulator { +impl EventAccumulator { fn new() -> EventAccumulator { EventAccumulator { diff_base: None, |