fix(style): use explicit HashSet type for StyleCop SA1000

This commit is contained in:
admin 2025-12-18 11:22:59 -06:00
parent 5c2378a1e6
commit 79481d5491

View file

@ -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"
};