From dc5c7466db08f9c712f54fb1c82fab199fda3762 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 9 Nov 2025 16:51:35 -0500 Subject: [PATCH] fix: add missing #[allow(dead_code)] attribute to clear_cache method --- bridge/src/model_downloader.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/bridge/src/model_downloader.rs b/bridge/src/model_downloader.rs index 345e09c..3cf7ee7 100644 --- a/bridge/src/model_downloader.rs +++ b/bridge/src/model_downloader.rs @@ -147,6 +147,7 @@ impl ModelDownloader { } /// Clear the download cache + #[allow(dead_code)] pub fn clear_cache(&self) -> Result<(), std::io::Error> { let mut cache = self.cache.lock().unwrap(); cache.clear();