registry: feed the linter by removing redundant err check

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day
2017-09-29 13:27:49 -07:00
parent 8710fa58ae
commit 4abf680c76
3 changed files with 3 additions and 15 deletions

View File

@@ -79,9 +79,5 @@ func ping(manager challenge.Manager, endpoint, versionHeader string) error {
}
defer resp.Body.Close()
if err := manager.AddResponse(resp); err != nil {
return err
}
return nil
return manager.AddResponse(resp)
}