mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
hugolib: Remove unnecessary params
Found by github.com/mvdan/unparam
This commit is contained in:
parent
a2ec372a03
commit
4bfa189031
3 changed files with 7 additions and 7 deletions
|
@ -478,7 +478,7 @@ func (h *HugoSites) setupTranslations() {
|
||||||
|
|
||||||
if len(h.Sites) > 1 {
|
if len(h.Sites) > 1 {
|
||||||
pages := h.Sites[0].AllPages
|
pages := h.Sites[0].AllPages
|
||||||
allTranslations := pagesToTranslationsMap(h.multilingual, pages)
|
allTranslations := pagesToTranslationsMap(pages)
|
||||||
assignTranslationsToPages(allTranslations, pages)
|
assignTranslationsToPages(allTranslations, pages)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -524,7 +524,7 @@ func (s *Site) preparePagesForRender(cfg *BuildCfg) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var err error
|
var err error
|
||||||
if workContentCopy, err = handleShortcodes(p, s.Tmpl, workContentCopy); err != nil {
|
if workContentCopy, err = handleShortcodes(p, workContentCopy); err != nil {
|
||||||
s.Log.ERROR.Printf("Failed to handle shortcodes for page %s: %s", p.BaseFileName(), err)
|
s.Log.ERROR.Printf("Failed to handle shortcodes for page %s: %s", p.BaseFileName(), err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -571,7 +571,7 @@ func (h *HugoSites) Pages() Pages {
|
||||||
return h.Sites[0].AllPages
|
return h.Sites[0].AllPages
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleShortcodes(p *Page, t tpl.Template, rawContentCopy []byte) ([]byte, error) {
|
func handleShortcodes(p *Page, rawContentCopy []byte) ([]byte, error) {
|
||||||
if len(p.contentShortCodes) > 0 {
|
if len(p.contentShortCodes) > 0 {
|
||||||
p.s.Log.DEBUG.Printf("Replace %d shortcodes in %q", len(p.contentShortCodes), p.BaseFileName())
|
p.s.Log.DEBUG.Printf("Replace %d shortcodes in %q", len(p.contentShortCodes), p.BaseFileName())
|
||||||
shortcodes, err := executeShortcodeFuncMap(p.contentShortCodes)
|
shortcodes, err := executeShortcodeFuncMap(p.contentShortCodes)
|
||||||
|
|
|
@ -666,7 +666,7 @@ func (s *Site) reProcess(events []fsnotify.Event) (whatChanged, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
go incrementalReadCollator(s, readResults, pageChan, fileConvChan, coordinator, errs)
|
go incrementalReadCollator(s, readResults, pageChan, fileConvChan, coordinator, errs)
|
||||||
go converterCollator(s, convertResults, errs)
|
go converterCollator(convertResults, errs)
|
||||||
|
|
||||||
for _, ev := range sourceReallyChanged {
|
for _, ev := range sourceReallyChanged {
|
||||||
|
|
||||||
|
@ -1182,7 +1182,7 @@ func (s *Site) convertSource() chan error {
|
||||||
go pageConverter(pageChan, results, wg)
|
go pageConverter(pageChan, results, wg)
|
||||||
}
|
}
|
||||||
|
|
||||||
go converterCollator(s, results, errs)
|
go converterCollator(results, errs)
|
||||||
|
|
||||||
for _, p := range s.rawAllPages {
|
for _, p := range s.rawAllPages {
|
||||||
if p.shouldBuild() {
|
if p.shouldBuild() {
|
||||||
|
@ -1266,7 +1266,7 @@ func fileConverter(s *Site, files <-chan *source.File, results HandleResults, wg
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func converterCollator(s *Site, results <-chan HandledResult, errs chan<- error) {
|
func converterCollator(results <-chan HandledResult, errs chan<- error) {
|
||||||
errMsgs := []string{}
|
errMsgs := []string{}
|
||||||
for r := range results {
|
for r := range results {
|
||||||
if r.err != nil {
|
if r.err != nil {
|
||||||
|
|
|
@ -22,7 +22,7 @@ import (
|
||||||
// filename.
|
// filename.
|
||||||
type Translations map[string]*Page
|
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)
|
out := make(map[string]Translations)
|
||||||
|
|
||||||
for _, page := range pages {
|
for _, page := range pages {
|
||||||
|
|
Loading…
Reference in a new issue