Skip to content

Commit 5a8c74e

Browse files
authored
Merge pull request #340 from dncuug/remove-deprecation
Request removes [Obsolete] attribute
2 parents 4a9c349 + 87f2025 commit 5a8c74e

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/X.PagedList/BasePagedList.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,5 @@ IEnumerator IEnumerable.GetEnumerator()
169169
/// Gets a non-enumerable copy of this paged list.
170170
/// </summary>
171171
/// <returns>A non-enumerable copy of this paged list.</returns>
172-
[Obsolete("This method will be removed in future versions")]
173172
public PagedListMetaData GetMetaData() => new(this);
174173
}

src/X.PagedList/IPagedList.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ public interface IPagedList<out T> : IPagedList, IReadOnlyList<T>
1515
/// Gets a non-enumerable copy of this paged list.
1616
/// </summary>
1717
/// <returns>A non-enumerable copy of this paged list.</returns>
18-
[Obsolete("This method will be removed in future versions")]
1918
PagedListMetaData GetMetaData();
2019
}
2120

src/X.PagedList/PagedListMetaData.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ namespace X.PagedList;
55
/// <summary>
66
/// Non-enumerable version of the PagedList class.
77
/// </summary>
8-
[Obsolete("This class will be removed in future versions")]
98
public class PagedListMetaData : IPagedList
109
{
1110
/// <summary>

0 commit comments

Comments
 (0)