Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 3f4c8e1

Browse files
committed
Yeah, let's not have incomplete constructors...
1 parent bd95ae7 commit 3f4c8e1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/GitHub.Exports.Reactive/Collections/TrackingCollection.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,12 @@ public TimeSpan ProcessingDelay
7373
}
7474
}
7575

76-
public TrackingCollection()
76+
public TrackingCollection(Func<T, T, int> comparer = null, Func<T, int, IList<T>, bool> filter = null, IScheduler scheduler = null)
7777
{
7878
queue = new ConcurrentQueue<ActionData>();
7979
ProcessingDelay = TimeSpan.FromMilliseconds(10);
8080
fuzziness = TimeSpan.FromMilliseconds(1);
81-
}
8281

83-
public TrackingCollection(Func<T, T, int> comparer = null, Func<T, int, IList<T>, bool> filter = null, IScheduler scheduler = null)
84-
: this()
85-
{
8682
#if DISABLE_REACTIVEUI
8783
this.scheduler = GetScheduler(scheduler);
8884
#else

0 commit comments

Comments
 (0)