Make linter happy

This commit is contained in:
Alfonso Acosta
2016-02-08 12:48:37 +00:00
parent 08969ec154
commit b08c427618

View File

@@ -17,9 +17,11 @@ func (f *fixedConnIter) Next() *Connection {
// ConnectionProcs. It's designed to be used in tests.
type FixedScanner []Connection
// Connections implements ConnectionsScanner.Connections
func (s FixedScanner) Connections(_ bool) (ConnIter, error) {
iter := fixedConnIter(s)
return &iter, nil
}
// Stop implements ConnectionsScanner.Stop (dummy since there is no background work)
func (s FixedScanner) Stop() {}