check gofmt with golang 1.4

This commit is contained in:
Eric Paris
2015-02-20 10:31:06 -05:00
parent 4c87805870
commit 9965604d4b
2 changed files with 2 additions and 2 deletions

View File

@@ -262,7 +262,7 @@ func (s *serviceStore) MergedState() interface{} {
// watchForUpdates invokes bcaster.Notify() with the latest version of an object
// when changes occur.
func watchForUpdates(bcaster *config.Broadcaster, accessor config.Accessor, updates <-chan struct{}) {
for _ = range updates {
for range updates {
bcaster.Notify(accessor.MergedState())
}
}