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
|
@ -466,7 +466,7 @@ impl BreakpointStore {
|
|||
pub fn with_serialized_breakpoints(
|
||||
&self,
|
||||
breakpoints: BTreeMap<Arc<Path>, Vec<SerializedBreakpoint>>,
|
||||
cx: &mut Context<'_, BreakpointStore>,
|
||||
cx: &mut Context<BreakpointStore>,
|
||||
) -> Task<Result<()>> {
|
||||
if let BreakpointStoreMode::Local(mode) = &self.mode {
|
||||
let mode = mode.clone();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue