Remove unneeded anonymous lifetimes from gpui::Context
(#27686)
This PR removes a number of unneeded anonymous lifetimes from usages of `gpui::Context`. Release Notes: - N/A
This commit is contained in:
parent
e90411efa2
commit
b5dc09c0ca
32 changed files with 80 additions and 87 deletions
|
@ -1859,7 +1859,7 @@ impl Terminal {
|
|||
Task::ready(())
|
||||
}
|
||||
|
||||
fn register_task_finished(&mut self, error_code: Option<i32>, cx: &mut Context<'_, Terminal>) {
|
||||
fn register_task_finished(&mut self, error_code: Option<i32>, cx: &mut Context<Terminal>) {
|
||||
self.completion_tx.try_send(()).ok();
|
||||
let task = match &mut self.task {
|
||||
Some(task) => task,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue