mirror of
https://github.com/Radarr/Radarr
synced 2026-01-24 08:23:54 +01: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 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"
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue