Skip to content

Commit

Permalink
Update Src/VTEX.Health/VtexHealthClient.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
gitauto-ai[bot] authored Nov 8, 2024
1 parent ccd4e3c commit 79f3911
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Src/VTEX.Health/VtexHealthClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,6 @@ private HttpClient CreateClient()
/// <param name="httpClient">The HTTP client.</param>
/// <exception cref="System.ArgumentNullException">loggerFactory</exception>
/// <exception cref="System.ArgumentNullException">httpClient</exception>
public VtexHealthClient(ILoggerFactory loggerFactory, HttpClient httpClient)
{
if (loggerFactory == null)
{
throw new ArgumentNullException(nameof(loggerFactory));
}

_logger = loggerFactory.CreateLogger<VtexHealthClient>();

Check failure on line 68 in Src/VTEX.Health/VtexHealthClient.cs

View workflow job for this annotation

GitHub Actions / Deep Source Coverage report

A namespace cannot directly contain members such as fields, methods or statements

Check failure on line 68 in Src/VTEX.Health/VtexHealthClient.cs

View workflow job for this annotation

GitHub Actions / Deep Source Coverage report

Type or namespace definition, or end-of-file expected

Check failure on line 68 in Src/VTEX.Health/VtexHealthClient.cs

View workflow job for this annotation

GitHub Actions / Deep Source Coverage report

A namespace cannot directly contain members such as fields, methods or statements

Check failure on line 68 in Src/VTEX.Health/VtexHealthClient.cs

View workflow job for this annotation

GitHub Actions / Deep Source Coverage report

Tuple must contain at least two elements.

Check failure on line 68 in Src/VTEX.Health/VtexHealthClient.cs

View workflow job for this annotation

GitHub Actions / Deep Source Coverage report

Type or namespace definition, or end-of-file expected
_httpClient = httpClient ?? throw new ArgumentNullException(nameof(httpClient));
Expand Down

0 comments on commit 79f3911

Please sign in to comment.