We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1430336 commit a359b19Copy full SHA for a359b19
src/ImageSharp/Memory/RowInterval.cs
@@ -65,12 +65,6 @@ public override bool Equals(object obj)
65
return !ReferenceEquals(null, obj) && obj is RowInterval other && this.Equals(other);
66
}
67
68
- public override int GetHashCode()
69
- {
70
- unchecked
71
72
- return (this.Min * 397) ^ this.Max;
73
- }
74
+ public override int GetHashCode() => HashCode.Combine(this.Min, this.Max);
75
76
0 commit comments