From ad1e35d6518d53b627f3ded473a785bdcdbfece9 Mon Sep 17 00:00:00 2001 From: olivier Date: Mon, 21 Jul 2025 10:19:57 +0200 Subject: [PATCH] remove unused function --- crates/data-model/src/upstream_oauth2/provider.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crates/data-model/src/upstream_oauth2/provider.rs b/crates/data-model/src/upstream_oauth2/provider.rs index 328f9c308..c54e40d15 100644 --- a/crates/data-model/src/upstream_oauth2/provider.rs +++ b/crates/data-model/src/upstream_oauth2/provider.rs @@ -423,10 +423,3 @@ pub enum OnConflict { /// existing link or not Add, } - -impl OnConflict { - #[must_use] - pub fn is_add(&self) -> bool { - matches!(self, Self::Add) - } -}