cli/command/container/attach.go:141:15: nilness: impossible condition: nil != nil (govet)

Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
This commit is contained in:
Silvin Lubecki 2019-04-02 13:03:33 +02:00 committed by Sebastiaan van Stijn
parent b3d4c6aac7
commit 584da37756
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 0 additions and 4 deletions

View File

@ -138,10 +138,6 @@ func runAttach(dockerCli command.Cli, opts *attachOptions) error {
return err
}
if errAttach != nil {
return errAttach
}
return getExitStatus(errC, resultC)
}