Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4955a4a

Browse files
committedMar 14, 2024··
chore: Clean up usings
1 parent d0b2b06 commit 4955a4a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/Testcontainers.MongoDb/Usings.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
global using System;
2-
global using System.Collections.Generic;
32
global using System.IO;
43
global using System.Linq;
54
global using System.Text;

‎src/Testcontainers/Containers/ResourceReaperState.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ namespace DotNet.Testcontainers.Containers
44
using System.Threading;
55
using DotNet.Testcontainers.Configurations;
66
using DotNet.Testcontainers.Images;
7+
using Microsoft.Extensions.Logging;
78

89
/// <summary>
910
/// Resource Reaper states.
@@ -24,7 +25,7 @@ public enum ResourceReaperState
2425
/// <see cref="ResourceReaper" /> maintains the TCP connection to Ryuk.
2526
/// </summary>
2627
/// <remarks>
27-
/// <see cref="ResourceReaper.GetAndStartNewAsync(IDockerEndpointAuthenticationConfiguration, IImage, IMount, bool, TimeSpan, CancellationToken)" /> will complete now.
28+
/// <see cref="ResourceReaper.GetAndStartNewAsync(IDockerEndpointAuthenticationConfiguration, IImage, IMount, ILogger, bool, TimeSpan, CancellationToken)" /> will complete now.
2829
/// </remarks>
2930
MaintainingConnection,
3031

0 commit comments

Comments
 (0)
Please sign in to comment.