hugolib: Remove unnecessary params

Found by github.com/mvdan/unparam
This commit is contained in:
Albert Nigmatzianov
2017-03-08 13:58:58 +05:00
committed by Bjørn Erik Pedersen
parent a2ec372a03
commit 4bfa189031
3 changed files with 7 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ import (
// filename.
type Translations map[string]*Page
func pagesToTranslationsMap(ml *Multilingual, pages []*Page) map[string]Translations {
func pagesToTranslationsMap(pages []*Page) map[string]Translations {
out := make(map[string]Translations)
for _, page := range pages {