We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent babcc12 commit 320ddf9Copy full SHA for 320ddf9
Rubberduck.Core/VersionCheck/ApiClientBase.cs
@@ -15,11 +15,11 @@ public interface IHttpClientProvider
15
HttpClient GetClient();
16
}
17
18
- public sealed class ApiHttpClientProvider : IHttpClientProvider, IDisposable
+ public sealed class HttpClientProvider : IHttpClientProvider, IDisposable
19
{
20
private readonly Lazy<HttpClient> _client;
21
22
- public ApiHttpClientProvider(Func<HttpClient> getClient)
+ public HttpClientProvider(Func<HttpClient> getClient)
23
24
_client = new Lazy<HttpClient>(getClient);
25
0 commit comments