mirror of
https://github.com/Radarr/Radarr
synced 2026-05-08 14:00:35 +02:00
fix(style): use explicit HashSet type for StyleCop SA1000
This commit is contained in:
parent
5c2378a1e6
commit
79481d5491
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ public class ArchiveService : IArchiveService
|
||||||
{
|
{
|
||||||
private readonly Logger _logger;
|
private readonly Logger _logger;
|
||||||
|
|
||||||
private static readonly HashSet<string> SupportedExtensions = new(StringComparer.OrdinalIgnoreCase)
|
private static readonly HashSet<string> SupportedExtensions = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
|
||||||
{
|
{
|
||||||
".zip", ".rar", ".7z", ".tar", ".gz", ".tgz", ".tar.gz", ".bz2", ".tar.bz2"
|
".zip", ".rar", ".7z", ".tar", ".gz", ".tgz", ".tar.gz", ".bz2", ".tar.bz2"
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue