Clean-up lint warnings

This commit is contained in:
fox.cpp 2025-01-24 23:34:09 +03:00
parent 120c5c9ea2
commit dbc030c267
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
17 changed files with 9 additions and 28 deletions

View file

@ -125,7 +125,6 @@ func (cr *checkRunner) checkStates(ctx context.Context, checks []module.Check) (
if len(cr.checkedRcpts) != 0 {
for _, rcpt := range cr.checkedRcpts {
rcpt := rcpt
err := cr.runAndMergeResults(states, func(s module.CheckState) module.CheckResult {
// Avoid calling CheckRcpt for the same recipient for the same check
// multiple times, even if requested.
@ -176,7 +175,6 @@ func (cr *checkRunner) runAndMergeResults(states []module.CheckState, runner fun
}{}
for _, state := range states {
state := state
data.wg.Add(1)
go func() {
defer func() {