From 643fe9a218bc5c23c9000d6775a095d6d6f5fc4a Mon Sep 17 00:00:00 2001 From: Ilya Grigoriev Date: Wed, 18 Jan 2023 11:19:54 -0800 Subject: [PATCH] Remove no longer needed clippy bug workaround --- src/commands/git.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands/git.rs b/src/commands/git.rs index c44007041..2d18e80c5 100644 --- a/src/commands/git.rs +++ b/src/commands/git.rs @@ -415,7 +415,6 @@ fn do_git_clone( Ok((workspace_command, maybe_default_branch)) } -#[allow(clippy::explicit_auto_deref)] // https://github.com/rust-lang/rust-clippy/issues/9763 fn with_remote_callbacks(ui: &mut Ui, f: impl FnOnce(git::RemoteCallbacks<'_>) -> T) -> T { let mut ui = Mutex::new(ui); let mut callback = None;