Skip to content

Commit

Permalink
TrackingCollection should be internal
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremySkinner committed Feb 12, 2020
1 parent 3e58381 commit 73ca81f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/FluentValidation/Internal/TrackingCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ namespace FluentValidation.Internal {
using System.Collections;
using System.Collections.Generic;

[Obsolete("This class will be internal in FluentValidation 9.")]
public class TrackingCollection<T> : IEnumerable<T> {
internal class TrackingCollection<T> : IEnumerable<T> {
readonly List<T> _innerCollection = new List<T>();
public event Action<T> ItemAdded;
private Action<T> _capture = null;
Expand Down

0 comments on commit 73ca81f

Please sign in to comment.