summaryrefslogtreecommitdiffstats
path: root/model/channel_count.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-09-17 08:44:50 -0700
committerCorey Hulen <corey@hulen.com>2015-09-17 08:44:50 -0700
commitde64bd19d5a9811ee2539baa8fdb61c4ece57378 (patch)
tree51a2527782363a932f4791fe9cf31ca89052e12b /model/channel_count.go
parent047fec54ccc3b0d72bb6a425d06302ffa210553f (diff)
parenteb4b80a4845a738f5a1e84504a31f6f54bc4fe92 (diff)
downloadchat-de64bd19d5a9811ee2539baa8fdb61c4ece57378.tar.gz
chat-de64bd19d5a9811ee2539baa8fdb61c4ece57378.tar.bz2
chat-de64bd19d5a9811ee2539baa8fdb61c4ece57378.zip
Merge pull request #703 from mattermost/add-gofmt
Adding gofmt to travis build
Diffstat (limited to 'model/channel_count.go')
-rw-r--r--model/channel_count.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/channel_count.go b/model/channel_count.go
index d5daba14e..19d6ac150 100644
--- a/model/channel_count.go
+++ b/model/channel_count.go
@@ -20,7 +20,7 @@ type ChannelCounts struct {
func (o *ChannelCounts) Etag() string {
ids := []string{}
- for id, _ := range o.Counts {
+ for id := range o.Counts {
ids = append(ids, id)
}
sort.Strings(ids)