fix: update build_entries function signature to ignore frecency parameter
Some checks failed
CI / test (push) Failing after 5m6s
CI / clippy (push) Failing after 5m3s
CI / fmt (push) Failing after 23s

This commit is contained in:
2026-03-18 13:48:02 +01:00
parent ff9b2b5712
commit 3d2bd5f9fe

View File

@@ -135,7 +135,7 @@ fn save_to_path(path: &Path, entries: &HashMap<String, CachedEntry>) {
}
}
fn build_entries(source: &impl DesktopEntrySource, frecency: &Arc<FrecencyStore>) -> HashMap<String, CachedEntry> {
fn build_entries(source: &impl DesktopEntrySource, _frecency: &Arc<FrecencyStore>) -> HashMap<String, CachedEntry> {
source
.entries()
.into_iter()