diff --git a/core/core.go b/core/core.go index 80529311..6fccbd1b 100644 --- a/core/core.go +++ b/core/core.go @@ -30,7 +30,7 @@ func UniqueInts(a []int, sorted bool) []int { tmp[n] = true } - for n, _ := range tmp { + for n := range tmp { uniq = append(uniq, n) }