refactor(library): drop dead pre-pagination filter pipeline in queue tab

The DB-backed pagination migration left the old in-widget filter/unification
pipeline behind three unused_element ignores; every helper, cache field, and
isolate entry point below them was reachable only from that dead root.
This commit is contained in:
zarzet
2026-07-14 17:53:58 +07:00
parent 4ffd5cc701
commit e2a2e8a914
4 changed files with 0 additions and 973 deletions
@@ -112,23 +112,6 @@ class DownloadedEmbeddedCoverResolver {
}
}
static void invalidatePathsNotIn(Set<String> validCleanPaths) {
if (validCleanPaths.isEmpty) {
final keys = _cache.keys.toList(growable: false);
for (final key in keys) {
invalidate(key);
}
return;
}
final staleKeys = _cache.keys
.where((path) => !validCleanPaths.contains(path))
.toList(growable: false);
for (final key in staleKeys) {
invalidate(key);
}
}
static void _touch(String cleanPath, _EmbeddedCoverCacheEntry entry) {
_cache
..remove(cleanPath)