hugolib: Remove temporary warning
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 14 Aug 2019 06:11:39 +0000 (08:11 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 14 Aug 2019 06:11:39 +0000 (08:11 +0200)
hugolib/pagecollections.go

index 52eb661569f24fa1937f56dc694431d64ba00de0..4b00642526708d9e7e11d8cc01beeef10870b004 100644 (file)
@@ -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 {