From d377809c776eed9fefba0400200be923395817be Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Thu, 3 Jul 2025 21:50:52 +0400 Subject: [PATCH] chore: remove dead code --- src-tauri/src/browser_runner.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src-tauri/src/browser_runner.rs b/src-tauri/src/browser_runner.rs index db17246..d79ca25 100644 --- a/src-tauri/src/browser_runner.rs +++ b/src-tauri/src/browser_runner.rs @@ -2832,12 +2832,6 @@ impl BrowserProfile { pub fn get_profile_data_path(&self, profiles_dir: &Path) -> PathBuf { profiles_dir.join(self.id.to_string()).join("profile") } - - /// Get the path to the profile UUID directory (profiles/{uuid}) - #[allow(dead_code)] - pub fn get_profile_uuid_dir(&self, profiles_dir: &Path) -> PathBuf { - profiles_dir.join(self.id.to_string()) - } } #[tauri::command]