diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2021-11-22 23:25:01 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2021-11-22 23:25:01 +0100 |
commit | ccbbff4774c57c77f66ea64351f7f46bd0db2d9f (patch) | |
tree | 660cf2830f6eda074b86d02c4a99935859454f4d /internal/feed/cache/v1.go | |
parent | 285fdee712dab96804dcdc1d4fc5dec2508e4abd (diff) | |
download | feed2imap-go-ccbbff4774c57c77f66ea64351f7f46bd0db2d9f.tar.gz feed2imap-go-ccbbff4774c57c77f66ea64351f7f46bd0db2d9f.tar.bz2 feed2imap-go-ccbbff4774c57c77f66ea64351f7f46bd0db2d9f.zip |
Increase go-conformity: map[T]struct{} instead of map[T]bool for sets
Diffstat (limited to 'internal/feed/cache/v1.go')
-rw-r--r-- | internal/feed/cache/v1.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/feed/cache/v1.go b/internal/feed/cache/v1.go index 5675db5..1c64513 100644 --- a/internal/feed/cache/v1.go +++ b/internal/feed/cache/v1.go @@ -377,9 +377,9 @@ func filterItems(items []cachedItem) []cachedItem { return copiedItems } -func (cache *v1Cache) cleanup(knownDescriptors map[feed.Descriptor]bool) { +func (cache *v1Cache) cleanup(knownDescriptors map[feed.Descriptor]struct{}) { for descr, id := range cache.Ids { - if knownDescriptors[descr] { + if _, ok := knownDescriptors[descr]; ok { // do not delete stuff still known to us continue } |