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
|
@ -358,7 +358,7 @@ impl NotificationStore {
|
|||
&mut self,
|
||||
notifications: impl IntoIterator<Item = (u64, Option<NotificationEntry>)>,
|
||||
is_new: bool,
|
||||
cx: &mut Context<'_, NotificationStore>,
|
||||
cx: &mut Context<NotificationStore>,
|
||||
) {
|
||||
let mut cursor = self.notifications.cursor::<(NotificationId, Count)>(&());
|
||||
let mut new_notifications = SumTree::default();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue