Oops. Made gofmt happy.

This commit is contained in:
Patrick Connolly
2018-11-13 19:40:11 +08:00
parent f4adf62324
commit 217a1690b1

View File

@@ -137,13 +137,13 @@ func (b *Bslack) skipMessageEvent(ev *slack.MessageEvent) bool {
} }
func (b *Bslack) filesCached(files []slack.File) bool { func (b *Bslack) filesCached(files []slack.File) bool {
for _, f := range files { for _, f := range files {
f := f f := f
if !b.fileCached(&f) { if !b.fileCached(&f) {
return false return false
} }
} }
return true return true
} }
// handleMessageEvent handles the message events. Together with any called sub-methods, // handleMessageEvent handles the message events. Together with any called sub-methods,