fix: add missing #[allow(dead_code)] attribute to clear_cache method

This commit is contained in:
MayaTheShy
2025-11-09 16:51:35 -05:00
parent 8fdc816cd4
commit 29b38d2b24

View File

@@ -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();