diff --git a/Src/VTEX.Health/VtexHealthClient.cs b/Src/VTEX.Health/VtexHealthClient.cs index 0f73e25fb..b389c8015 100644 --- a/Src/VTEX.Health/VtexHealthClient.cs +++ b/Src/VTEX.Health/VtexHealthClient.cs @@ -64,12 +64,6 @@ private HttpClient CreateClient() /// The HTTP client. /// loggerFactory /// httpClient - public VtexHealthClient(ILoggerFactory loggerFactory, HttpClient httpClient) - { - if (loggerFactory == null) - { - throw new ArgumentNullException(nameof(loggerFactory)); - } _logger = loggerFactory.CreateLogger(); _httpClient = httpClient ?? throw new ArgumentNullException(nameof(httpClient));