From 76ac318bcb9a09a96637c436db5e3b67153e5a59 Mon Sep 17 00:00:00 2001 From: Dmitry Yakimenko Date: Wed, 22 Oct 2025 11:08:38 +0200 Subject: [PATCH] Remove unnecessary clippy config attr and stale comments --- .../desktop_native/bitwarden_chromium_importer/src/linux.rs | 2 -- .../desktop_native/bitwarden_chromium_importer/src/macos.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/apps/desktop/desktop_native/bitwarden_chromium_importer/src/linux.rs b/apps/desktop/desktop_native/bitwarden_chromium_importer/src/linux.rs index 9ffc58e76e4..ebacc3bfe12 100644 --- a/apps/desktop/desktop_native/bitwarden_chromium_importer/src/linux.rs +++ b/apps/desktop/desktop_native/bitwarden_chromium_importer/src/linux.rs @@ -44,8 +44,6 @@ pub fn get_crypto_service( Ok(Box::new(service)) } -// Need to allow this to match the signature on other platforms. On Linux this is a no-op. -#[allow(clippy::ptr_arg)] pub fn configure_windows_crypto_service(_admin_exe_path: &str) { // Do nothing on Linux } diff --git a/apps/desktop/desktop_native/bitwarden_chromium_importer/src/macos.rs b/apps/desktop/desktop_native/bitwarden_chromium_importer/src/macos.rs index 4dd15d25de6..61d79042064 100644 --- a/apps/desktop/desktop_native/bitwarden_chromium_importer/src/macos.rs +++ b/apps/desktop/desktop_native/bitwarden_chromium_importer/src/macos.rs @@ -53,8 +53,6 @@ pub fn get_crypto_service( Ok(Box::new(MacCryptoService::new(config))) } -// Need to allow this to match the signature on other platforms. On macOS this is a no-op. -#[allow(clippy::ptr_arg)] pub fn configure_windows_crypto_service(_admin_exe_path: &str) { // Do nothing on macOS }