Removed underscore for second return.

This commit is contained in:
Pradyumna Kaushik 2018-10-04 14:11:38 -04:00
parent 410a6ef1fa
commit 1e2fae9f80

View file

@ -63,7 +63,7 @@ func init() {
func listAllSchedulingPolicies() {
fmt.Println("Scheduling Policies")
fmt.Println("-------------------")
for policyName, _ := range schedulers.SchedPolicies {
for policyName := range schedulers.SchedPolicies {
fmt.Println(policyName)
}
}