From ac05b0c22a298daaef76b94cbc6f80ed796bed8b Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 2 Jul 2019 09:19:16 -0500 Subject: [PATCH] ren param for consistency --- src/FilterLists.Agent/Features/Lists/DownloadRawText.cs | 4 ++-- src/FilterLists.Agent/Features/Lists/DownloadSevenZip.cs | 4 ++-- src/FilterLists.Agent/Features/Lists/DownloadZip.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/FilterLists.Agent/Features/Lists/DownloadRawText.cs b/src/FilterLists.Agent/Features/Lists/DownloadRawText.cs index 3b763cf9c..d98967558 100644 --- a/src/FilterLists.Agent/Features/Lists/DownloadRawText.cs +++ b/src/FilterLists.Agent/Features/Lists/DownloadRawText.cs @@ -28,9 +28,9 @@ public class Handler : AsyncRequestHandler 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) diff --git a/src/FilterLists.Agent/Features/Lists/DownloadSevenZip.cs b/src/FilterLists.Agent/Features/Lists/DownloadSevenZip.cs index 546dff0a3..519d4cd0a 100644 --- a/src/FilterLists.Agent/Features/Lists/DownloadSevenZip.cs +++ b/src/FilterLists.Agent/Features/Lists/DownloadSevenZip.cs @@ -28,9 +28,9 @@ public class Handler : AsyncRequestHandler 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) diff --git a/src/FilterLists.Agent/Features/Lists/DownloadZip.cs b/src/FilterLists.Agent/Features/Lists/DownloadZip.cs index b8ef012bf..25431eef1 100644 --- a/src/FilterLists.Agent/Features/Lists/DownloadZip.cs +++ b/src/FilterLists.Agent/Features/Lists/DownloadZip.cs @@ -27,9 +27,9 @@ public class Handler : AsyncRequestHandler 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)