mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
rm unneeded string literal annotations
This commit is contained in:
parent
277d0641f1
commit
38df36911a
4 changed files with 6 additions and 6 deletions
|
|
@ -12,9 +12,9 @@ public class Command : IRequest
|
|||
|
||||
public class Handler : RequestHandler<Command>
|
||||
{
|
||||
private const string RepoDirectory = @"archives";
|
||||
private const string SignatureName = @"FilterLists.Agent";
|
||||
private const string SignatureEmail = @"noreply@filterlists.com";
|
||||
private const string RepoDirectory = "archives";
|
||||
private const string SignatureName = "FilterLists.Agent";
|
||||
private const string SignatureEmail = "noreply@filterlists.com";
|
||||
private const string CommitMessageSuffix = " FilterLists archive by FilterLists.Agent";
|
||||
|
||||
protected override void Handle(Command request)
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ public Command(ListInfo listInfo)
|
|||
|
||||
public class Handler : AsyncRequestHandler<Command>
|
||||
{
|
||||
private const string RepoDirectory = @"archives";
|
||||
private const string RepoDirectory = "archives";
|
||||
private readonly string[] _extensionsToRewrite = { "", ".aspx", ".p2p", ".php" };
|
||||
private readonly HttpClient _httpClient;
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ public Command(ListInfo listInfo)
|
|||
|
||||
public class Handler : AsyncRequestHandler<Command>
|
||||
{
|
||||
private const string RepoDirectory = @"archives";
|
||||
private const string RepoDirectory = "archives";
|
||||
private readonly HttpClient _httpClient;
|
||||
|
||||
public Handler(AgentHttpClient httpClient)
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ public Command(ListInfo listInfo)
|
|||
|
||||
public class Handler : AsyncRequestHandler<Command>
|
||||
{
|
||||
private const string RepoDirectory = @"archives";
|
||||
private const string RepoDirectory = "archives";
|
||||
private readonly HttpClient _httpClient;
|
||||
|
||||
public Handler(AgentHttpClient httpClient)
|
||||
|
|
|
|||
Loading…
Reference in a new issue