Remove some redundant entity clones (#36274)
`cx.entity()` already returns an owned entity, so there is no need for these clones. Release Notes: - N/A
This commit is contained in:
parent
7199c733b2
commit
3e0a755486
32 changed files with 106 additions and 123 deletions
|
@ -1292,7 +1292,7 @@ impl RemoteServerProjects {
|
|||
let connection_string = connection_string.clone();
|
||||
move |_, _: &menu::Confirm, window, cx| {
|
||||
remove_ssh_server(
|
||||
cx.entity().clone(),
|
||||
cx.entity(),
|
||||
server_index,
|
||||
connection_string.clone(),
|
||||
window,
|
||||
|
@ -1312,7 +1312,7 @@ impl RemoteServerProjects {
|
|||
.child(Label::new("Remove Server").color(Color::Error))
|
||||
.on_click(cx.listener(move |_, _, window, cx| {
|
||||
remove_ssh_server(
|
||||
cx.entity().clone(),
|
||||
cx.entity(),
|
||||
server_index,
|
||||
connection_string.clone(),
|
||||
window,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue