summaryrefslogtreecommitdiffstats
path: root/hugolib/pagination.go
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2015-07-30 01:17:10 -0600
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2015-07-30 13:33:38 +0200
commit252ea96d1d359b485bae489327a8219d102f0607 (patch)
tree7a0f13dc4f1396c63eef1425b71ca887ca7b5a6c /hugolib/pagination.go
parentb23b546a30df792ad2c8f0cf3ec1be30c53ba34d (diff)
Remove deprecated fields and methods for v0.15
Special thanks to @bep for his guidance and for making sure all of the Hugo themes get updated. Fixes #1172
Diffstat (limited to 'hugolib/pagination.go')
-rw-r--r--hugolib/pagination.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/hugolib/pagination.go b/hugolib/pagination.go
index 2f8d87621..acd406ed1 100644
--- a/hugolib/pagination.go
+++ b/hugolib/pagination.go
@@ -74,12 +74,6 @@ func (p *Pager) URL() template.HTML {
return template.HTML(p.paginationURLFactory(p.PageNumber()))
}
-// Url is deprecated. Will be removed in 0.15.
-func (p *Pager) Url() template.HTML {
- helpers.Deprecated("Paginator", ".Url", ".URL")
- return p.URL()
-}
-
// Pages returns the Pages on this page.
// Note: If this return a non-empty result, then PageGroups() will return empty.
func (p *Pager) Pages() Pages {