Skip to content

Commit 72e4a19

Browse files
authored
feat: obsolete SynchronizedSet (#39)
1 parent 03f091f commit 72e4a19

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/Iesi.Collections.Test/Generic/SynchronizedSetFixture.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ namespace Iesi.Collections.Test.Generic;
1313
/// Summary description for ReadOnlySetFixture.
1414
/// </summary>
1515
[TestFixture]
16+
[Obsolete("SynchronizedSet is obsolete")]
1617
public class SynchronizedSetFixture : GenericSetFixture
1718
{
1819
protected override ISet<string> CreateInstance()

src/Iesi.Collections/Generic/SynchronizedSet.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ namespace Iesi.Collections.Generic;
1515
#if !NETSTANDARD1_0
1616
[Serializable]
1717
#endif
18+
[Obsolete("The SynchronizedSet will be removed in a future version")]
1819
public sealed class SynchronizedSet<T> : ISet<T>
1920
#if !NET40
2021
, IReadOnlyCollection<T>

0 commit comments

Comments
 (0)