Skip to content

Commit

Permalink
Extend range of nullable diagnostic ids
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-englert committed Aug 5, 2021
1 parent b53910e commit 0b29a86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Nullable.Extended.Extension.Analyzer
internal class NullForgivingDetectionPostProcessor : ISyntaxAnalysisPostProcessor
{
private const string FirstNullableDiagnostic = "CS8600";
private const string LastNullableDiagnostic = "CS8700";
private const string LastNullableDiagnostic = "CS8900";

private static readonly IEqualityComparer<SyntaxNode> SyntaxNodeEqualityComparer = new DelegateEqualityComparer<SyntaxNode>(a => a.FullSpan);

Expand Down

0 comments on commit 0b29a86

Please sign in to comment.