From 4644b95bd568946429482aa36eeaff1eec6a7075 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 14 Aug 2019 08:11:39 +0200 Subject: [PATCH] hugolib: Remove temporary warning --- hugolib/pagecollections.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/hugolib/pagecollections.go b/hugolib/pagecollections.go index 52eb6615..4b006425 100644 --- a/hugolib/pagecollections.go +++ b/hugolib/pagecollections.go @@ -27,7 +27,6 @@ import ( "github.com/pkg/errors" "github.com/gohugoio/hugo/cache" - "github.com/gohugoio/hugo/helpers" "github.com/gohugoio/hugo/resources/page" ) @@ -285,11 +284,6 @@ func (c *PageCollections) getPageNew(context page.Page, ref string) (page.Page, // Many people will have "post/foo.md" in their content files. p, err := c.getFromCache("/" + ref) if err == nil && p != nil { - if context != nil { - // TODO(bep) remove this case and the message below when the storm has passed - err := wrapErr(errors.Errorf(`make non-relative ref/relref page reference(s) in page %q absolute, e.g. {{< ref "/blog/my-post.md" >}}`, context.Path()), context) - helpers.DistinctWarnLog.Println(err) - } return p, nil } if err != nil { -- 2.30.2