Unexport ShouldBuild and AssertShouldBuild

This commit is contained in:
Bjørn Erik Pedersen
2016-06-14 15:53:49 +02:00
parent eeaafb4b26
commit 8588103316
3 changed files with 6 additions and 6 deletions

View File

@@ -996,7 +996,7 @@ func converterCollator(s *Site, results <-chan HandledResult, errs chan<- error)
}
func (s *Site) addPage(page *Page) {
if page.ShouldBuild() {
if page.shouldBuild() {
s.Pages = append(s.Pages, page)
}