ren param for consistency

This commit is contained in:
Collin M. Barrett 2019-07-02 09:19:16 -05:00
parent 0bf807f01e
commit ac05b0c22a
3 changed files with 6 additions and 6 deletions

View file

@ -28,9 +28,9 @@ public class Handler : AsyncRequestHandler<Command>
private readonly string[] _extensionsToRewrite = { "", ".aspx", ".p2p", ".php" };
private readonly HttpClient _httpClient;
public Handler(AgentHttpClient httpClient)
public Handler(AgentHttpClient agentHttpClient)
{
_httpClient = httpClient.Client;
_httpClient = agentHttpClient.Client;
}
protected override async Task Handle(Command request, CancellationToken cancellationToken)

View file

@ -28,9 +28,9 @@ public class Handler : AsyncRequestHandler<Command>
private const string RepoDirectory = "archives";
private readonly HttpClient _httpClient;
public Handler(AgentHttpClient httpClient)
public Handler(AgentHttpClient agentHttpClient)
{
_httpClient = httpClient.Client;
_httpClient = agentHttpClient.Client;
}
protected override async Task Handle(Command request, CancellationToken cancellationToken)

View file

@ -27,9 +27,9 @@ public class Handler : AsyncRequestHandler<Command>
private const string RepoDirectory = "archives";
private readonly HttpClient _httpClient;
public Handler(AgentHttpClient httpClient)
public Handler(AgentHttpClient agentHttpClient)
{
_httpClient = httpClient.Client;
_httpClient = agentHttpClient.Client;
}
protected override async Task Handle(Command request, CancellationToken cancellationToken)