Skip to content

Commit

Permalink
Fix clippyyyy
Browse files Browse the repository at this point in the history
  • Loading branch information
RemcoSmitsDev committed Jan 11, 2025
1 parent f896812 commit 330c4f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/debugger_ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ gpui.workspace = true
language.workspace = true
menu.workspace = true
picker.workspace = true
pretty_assertions.workspace = true
project.workspace = true
rpc.workspace = true
serde.workspace = true
Expand All @@ -51,7 +52,6 @@ dap = { workspace = true, features = ["test-support"] }
editor = { workspace = true, features = ["test-support"] }
env_logger.workspace = true
gpui = { workspace = true, features = ["test-support"] }
pretty_assertions.workspace = true
project = { workspace = true, features = ["test-support"] }
unindent.workspace = true
util = { workspace = true, features = ["test-support"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/debugger_ui/src/variable_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ impl OpenEntry {
proto::variable_list_open_entry::Entry::Variable(state) => Some(Self::Variable {
name: state.name.clone(),
depth: state.depth as usize,
scope_id: state.scope_id as u64,
scope_id: state.scope_id,
}),
}
}
Expand Down Expand Up @@ -665,7 +665,7 @@ impl VariableList {
store.variables(&self.client_id, variable.variables_reference, cx)
});

let container_reference = variable.variables_reference.clone();
let container_reference = variable.variables_reference;
let entry_id = entry_id.clone();

self.fetch_variables_task = Some(cx.spawn(|this, mut cx| async move {
Expand Down

0 comments on commit 330c4f4

Please sign in to comment.