From bf878e9a953f435311572b2b28c7b7beb32262fe Mon Sep 17 00:00:00 2001 From: "Joseph T. Lyons" Date: Wed, 3 Dec 2025 08:55:58 -0500 Subject: [PATCH] Remove unnecessary variable redeclaration (#44074) Release Notes: - N/A --- crates/git_ui/src/git_panel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/git_ui/src/git_panel.rs b/crates/git_ui/src/git_panel.rs index bd17788506faa62f33618d4450000af1e7b8aec9..1c9b817be2507f806eab505555163f72b2fd148a 100644 --- a/crates/git_ui/src/git_panel.rs +++ b/crates/git_ui/src/git_panel.rs @@ -4014,7 +4014,7 @@ impl GitPanel { context_menu.action("Add to .gitignore", git::AddToGitignore.boxed_clone()) } - let mut context_menu = context_menu + context_menu = context_menu .separator() .action("Open Diff", Confirm.boxed_clone()) .action("Open File", SecondaryConfirm.boxed_clone());