pkg/plugins/plugins.go: remove ineffective break statement.

See,
$ gometalinter --vendor --deadline 10m --disable-all --enable=megacheck ./...
pkg/plugins/plugins.go:124:4⚠️ ineffective break statement. Did you mean to break out of the outer loop? (SA4011) (megacheck)
This commit is contained in:
Mario Trangoni
2018-10-15 20:39:23 +02:00
parent 8be4490e75
commit abb6b135a3

View File

@ -121,7 +121,6 @@ func (pm *PluginManager) Run(ctx context.Context) error {
pm.checkForUpdates()
case <-ctx.Done():
run = false
break
}
}