This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user