Skip to content

Commit

Permalink
Remove locale from diagnostic-ids link (#42830)
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorHofer committed Aug 20, 2024
1 parent b5d9947 commit e2b7b9d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.DotNet.ApiCompatibility.Logging
/// <param name="baselineAllErrors">If true, baselines all errors.</param>
public class SuppressionEngine(string? noWarn = null, bool baselineAllErrors = false) : ISuppressionEngine
{
protected const string DiagnosticIdDocumentationComment = " https://learn.microsoft.com/en-us/dotnet/fundamentals/package-validation/diagnostic-ids ";
protected const string DiagnosticIdDocumentationComment = " https://learn.microsoft.com/dotnet/fundamentals/package-validation/diagnostic-ids ";
private readonly HashSet<Suppression> _baselineSuppressions = [];
private readonly HashSet<Suppression> _suppressions = [];
private readonly HashSet<string> _noWarn = string.IsNullOrEmpty(noWarn) ? [] : new HashSet<string>(noWarn!.Split(';'));
Expand Down

0 comments on commit e2b7b9d

Please sign in to comment.