chore: warnings

This commit is contained in:
zhom
2025-07-27 02:32:20 +04:00
parent 13ae170166
commit 7e7b47cae3
2 changed files with 0 additions and 10 deletions
-8
View File
@@ -3659,14 +3659,6 @@ pub async fn ensure_all_binaries_exist(
.map_err(|e| format!("Failed to ensure all binaries exist: {e}"))
}
#[tauri::command]
pub async fn cleanup_unused_binaries() -> Result<Vec<String>, String> {
let browser_runner = BrowserRunner::new();
browser_runner
.cleanup_unused_binaries_internal()
.map_err(|e| format!("Failed to cleanup unused binaries: {e}"))
}
#[cfg(test)]
mod tests {
use super::*;
-2
View File
@@ -72,8 +72,6 @@ use group_manager::{
get_groups_with_profile_counts, get_profile_groups, update_profile_group,
};
use browser_runner::cleanup_unused_binaries;
// Trait to extend WebviewWindow with transparent titlebar functionality
pub trait WindowExt {
#[cfg(target_os = "macos")]