File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
components/Media/src/Extensions/System.Threading.Tasks Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ namespace CommunityToolkit.WinUI.Media;
10
10
/// An <see langword="async"/> <see cref="AsyncMutex"/> implementation that can be easily used inside a <see langword="using"/> block
11
11
/// </summary>
12
12
#pragma warning disable CA1001 // Types that own disposable fields should be disposable
13
- internal sealed partial class AsyncMutex
13
+ internal sealed class AsyncMutex
14
14
#pragma warning restore CA1001 // Types that own disposable fields should be disposable
15
15
{
16
16
/// <summary>
@@ -32,7 +32,7 @@ public async Task<IDisposable> LockAsync()
32
32
/// <summary>
33
33
/// Private class that implements the automatic release of the semaphore
34
34
/// </summary>
35
- private sealed partial class Lock : IDisposable
35
+ private sealed class Lock : IDisposable
36
36
{
37
37
/// <summary>
38
38
/// The <see cref="SemaphoreSlim"/> instance of the parent class
You can’t perform that action at this time.
0 commit comments