From b746134151a36380ca175938b2447cc5302fbf33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20=C3=85berg?= Date: Tue, 8 Jul 2025 11:14:33 +0200 Subject: [PATCH] Remove unused --- .../desktop_native/windows_plugin_authenticator/src/lib.rs | 5 ----- .../windows_plugin_authenticator/src/{utils.rs => util.rs} | 0 2 files changed, 5 deletions(-) rename apps/desktop/desktop_native/windows_plugin_authenticator/src/{utils.rs => util.rs} (100%) diff --git a/apps/desktop/desktop_native/windows_plugin_authenticator/src/lib.rs b/apps/desktop/desktop_native/windows_plugin_authenticator/src/lib.rs index 72060413dfb..be00e217441 100644 --- a/apps/desktop/desktop_native/windows_plugin_authenticator/src/lib.rs +++ b/apps/desktop/desktop_native/windows_plugin_authenticator/src/lib.rs @@ -30,11 +30,6 @@ pub use types::{ // Re-export utilities pub use utils as util; -const AUTHENTICATOR_NAME: &str = "Bitwarden Desktop Authenticator"; -//const AAGUID: &str = "d548826e-79b4-db40-a3d8-11116f7e8349"; -const CLSID: &str = "0f7dc5d9-69ce-4652-8572-6877fd695062"; -const RPID: &str = "bitwarden.com"; - /// Handles initialization and registration for the Bitwarden desktop app as a /// plugin authenticator with Windows. /// For now, also adds the authenticator diff --git a/apps/desktop/desktop_native/windows_plugin_authenticator/src/utils.rs b/apps/desktop/desktop_native/windows_plugin_authenticator/src/util.rs similarity index 100% rename from apps/desktop/desktop_native/windows_plugin_authenticator/src/utils.rs rename to apps/desktop/desktop_native/windows_plugin_authenticator/src/util.rs