Removed redundant return (staticcheck)

This commit is contained in:
2025-02-09 09:12:55 -05:00
parent b7467a00f1
commit e546f01c20

View File

@@ -16,7 +16,6 @@ func (s *uniq_arr[T]) add(vals ...T) {
s.backingMap[item] = struct{}{}
}
}
return
}
func (s uniq_arr[T]) contains(val T) bool {