Removed unused localization helper method

This commit is contained in:
Thorsten Sommer 2026-07-14 09:05:17 +02:00
parent 8aaa2dc40c
commit 5118a87bd2
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -167,7 +167,4 @@ public sealed record ManagedTranscriptAttachment(string FileName, string FilePat
/// <summary>Gets the platform path comparison used for canonical containment checks.</summary>
private static StringComparison PathComparison => OperatingSystem.IsWindows() ? StringComparison.OrdinalIgnoreCase : StringComparison.Ordinal;
/// <summary>Returns localized text while registering the US-English fallback with I18N.</summary>
private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(ManagedTranscriptAttachment).Namespace, nameof(ManagedTranscriptAttachment));
}