many debugs
All checks were successful
Publish NuGet packages / publish (push) Successful in 28s

This commit is contained in:
melekhin
2026-06-19 15:06:40 +07:00
parent 08b39b7bfe
commit e373d4108a
24 changed files with 1569 additions and 632 deletions

View File

@@ -10,7 +10,7 @@ namespace QWERTYkez.ExcelProcessor;
/// </summary>
internal class NormalizedSet : ISet<string>
{
private readonly HashSet<string> _inner;
readonly HashSet<string> _inner;
/// <summary>
/// Создаёт пустое нормализованное множество.
@@ -32,7 +32,7 @@ internal class NormalizedSet : ISet<string>
/// <summary>
/// Нормализует строку: верхний регистр и удаление диакритики.
/// </summary>
private static string Normalize(string s)
static string Normalize(string s)
{
if (string.IsNullOrEmpty(s))
return s;