deps: Fix most golint issues
authorCameron Moore <moorereason@gmail.com>
Thu, 6 Sep 2018 18:23:56 +0000 (13:23 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Sep 2018 06:25:51 +0000 (08:25 +0200)
deps/deps.go:79:6: exported type Listeners should have comment or be unexported
deps/deps.go:86:1: exported method Listeners.Add should have comment or be unexported
deps/deps.go:92:1: exported method Listeners.Notify should have comment or be unexported

deps/deps.go

index 3eecffca2c6afc569f77f02bce9db1eab832b59f..2b66a153f4baa5dc77dd85a705ba022467f015c6 100644 (file)
@@ -76,6 +76,7 @@ type Deps struct {
        BuildStartListeners *Listeners
 }
 
+// Listeners represents an event listener.
 type Listeners struct {
        sync.Mutex
 
@@ -83,12 +84,14 @@ type Listeners struct {
        listeners []func()
 }
 
+// Add adds a function to a Listeners instance.
 func (b *Listeners) Add(f func()) {
        b.Lock()
        defer b.Unlock()
        b.listeners = append(b.listeners, f)
 }
 
+// Notify executes all listener functions.
 func (b *Listeners) Notify() {
        b.Lock()
        defer b.Unlock()