diff --git a/src/Moonglade.Web/PagedList/HtmlHelper.cs b/src/Moonglade.Web/PagedList/HtmlHelper.cs index 5e54915af..abb4397fd 100644 --- a/src/Moonglade.Web/PagedList/HtmlHelper.cs +++ b/src/Moonglade.Web/PagedList/HtmlHelper.cs @@ -177,16 +177,6 @@ private TagBuilder PageCountAndLocationText(IPagedList list, PagedListRenderOpti return WrapInListItem(text, "PagedList-pageCountAndLocation", "disabled"); } - private TagBuilder ItemSliceAndTotalText(IPagedList list, PagedListRenderOptions options) - { - var text = tagBuilderFactory - .Create("a"); - - SetInnerText(text, string.Format(options.ItemSliceAndTotalFormat, list.FirstItemOnPage, list.LastItemOnPage, list.TotalItemCount)); - - return WrapInListItem(text, "PagedList-pageCountAndLocation", "disabled"); - } - #endregion Private methods public string PagedListPager(IPagedList pagedList, Func generatePageUrl, PagedListRenderOptions options)