mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
daemon: var-declaration: should omit type bool (revive)
daemon/list.go:556:18: var-declaration: should omit type bool from declaration of var shouldSkip; it will be inferred from the right-hand side (revive) shouldSkip bool = true ^ Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
16ced7622b
commit
d61b7c1211
1 changed files with 1 additions and 1 deletions
|
@ -553,7 +553,7 @@ func includeContainerInList(container *container.Snapshot, ctx *listContext) ite
|
|||
|
||||
if len(ctx.expose) > 0 || len(ctx.publish) > 0 {
|
||||
var (
|
||||
shouldSkip bool = true
|
||||
shouldSkip = true
|
||||
publishedPort nat.Port
|
||||
exposedPort nat.Port
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue