Merge pull request #82749 from xiaoanyunfei/cleanup/rm_unnecessary_return

rm unnecessary `return` at the end of function
This commit is contained in:
Kubernetes Prow Robot
2019-09-16 23:16:57 -07:00
committed by GitHub

View File

@@ -218,7 +218,6 @@ func InsertPredicateKeyToAlgorithmProviderMap(key string) {
for _, provider := range algorithmProviderMap { for _, provider := range algorithmProviderMap {
provider.FitPredicateKeys.Insert(key) provider.FitPredicateKeys.Insert(key)
} }
return
} }
// InsertPriorityKeyToAlgorithmProviderMap inserts a priority function to all algorithmProviders which are in algorithmProviderMap. // InsertPriorityKeyToAlgorithmProviderMap inserts a priority function to all algorithmProviders which are in algorithmProviderMap.
@@ -229,7 +228,6 @@ func InsertPriorityKeyToAlgorithmProviderMap(key string) {
for _, provider := range algorithmProviderMap { for _, provider := range algorithmProviderMap {
provider.PriorityFunctionKeys.Insert(key) provider.PriorityFunctionKeys.Insert(key)
} }
return
} }
// RegisterMandatoryFitPredicate registers a fit predicate with the algorithm registry, the predicate is used by // RegisterMandatoryFitPredicate registers a fit predicate with the algorithm registry, the predicate is used by