Skip to content

Commit 70e9271

Browse files
committed
make mutex not static
1 parent ce5b153 commit 70e9271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Microsoft.Toolkit.Uwp/IncrementalLoadingCollection/IncrementalLoadingCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class IncrementalLoadingCollection<TSource, IType> : ObservableCollection
3030
ISupportIncrementalLoading
3131
where TSource : Collections.IIncrementalSource<IType>
3232
{
33-
private static readonly SemaphoreSlim _mutex = new SemaphoreSlim(1);
33+
private readonly SemaphoreSlim _mutex = new SemaphoreSlim(1);
3434

3535
/// <summary>
3636
/// Gets or sets an <see cref="Action"/> that is called when a retrieval operation begins.

0 commit comments

Comments
 (0)