Skip to content

Commit

Permalink
Fix string comparison warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jwagon committed Jan 26, 2024
1 parent e0333c3 commit 583c3f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Snippets/Docs/DependencyInjection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public sealed class PipelineNameComparer : IEqualityComparer<MyPipelineKey>
{
public bool Equals(MyPipelineKey x, MyPipelineKey y) => x.PipelineName == y.PipelineName;

public int GetHashCode(MyPipelineKey obj) => obj.PipelineName.GetHashCode();
public int GetHashCode(MyPipelineKey obj) => obj.PipelineName.GetHashCode(StringComparison.Ordinal);
}

#endregion
Expand Down

0 comments on commit 583c3f1

Please sign in to comment.