Skip to content

Commit

Permalink
WAF mark SynchronizingCollection(Core) as obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
jbe2277 committed Sep 26, 2023
1 parent 6914fa0 commit 674c3ad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Test.Waf.Foundation
{
[TestClass]
[TestClass, Obsolete]
public class SynchronizingCollectionCoreTest
{
[TestMethod]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace System.Waf.Foundation
/// </summary>
/// <typeparam name="T">The type of elements in the collection.</typeparam>
/// <typeparam name="TOriginal">The type of elements in the original collection.</typeparam>
[Obsolete("Use System.Waf.Foundation.SynchronizingList instead.")]
public class SynchronizingCollectionCore<T, TOriginal> : ReadOnlyObservableList<T>, IDisposable
{
private readonly ObservableCollection<T> innerCollection;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Test.Waf.Applications
{
[TestClass]
[TestClass, Obsolete]
public class SynchronizingCollectionTest
{
[TestMethod]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ namespace System.Waf.Applications
/// </remarks>
/// <typeparam name="T">The type of elements in the collection.</typeparam>
/// <typeparam name="TOriginal">The type of elements in the original collection.</typeparam>
[Obsolete("Use System.Waf.Foundation.SynchronizingList instead.")]
public class SynchronizingCollection<T, TOriginal> : SynchronizingCollectionCore<T, TOriginal>
{
private readonly IWeakEventProxy? originalCollectionChangedProxy;
Expand Down

0 comments on commit 674c3ad

Please sign in to comment.