From 978d35d356e8752bdd272884df48a6289d88b40a Mon Sep 17 00:00:00 2001 From: Moritz Poldrack Date: Sun, 31 Jul 2022 14:32:48 +0200 Subject: lint: homogenize operations and minor fixes (gocritic) Apply GoDoc comment policy (comments for humans should have a space after the //; machine-readable comments shouldn't) Use strings.ReplaceAll instead of strings.Replace when appropriate Remove if/else chains by replacing them with switches Use short assignment/increment notation Replace single case switches with if statements Combine else and if when appropriate Signed-off-by: Moritz Poldrack Acked-by: Robin Jarry --- worker/imap/cache.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'worker/imap/cache.go') diff --git a/worker/imap/cache.go b/worker/imap/cache.go index 863b0714..62d450e6 100644 --- a/worker/imap/cache.go +++ b/worker/imap/cache.go @@ -165,9 +165,9 @@ func (w *IMAPWorker) cleanCache() { logging.Errorf("cannot clean database %d: %v", w.selected.UidValidity, err) continue } - removed = removed + 1 + removed++ } - scanned = scanned + 1 + scanned++ } iter.Release() elapsed := time.Since(start) -- cgit