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.
2 parents b29c25c + 8dba1c6 commit db28d22Copy full SHA for db28d22
1 file changed
src/ImageSharp/Metadata/Profiles/ICC/Various/IccClut.cs
@@ -91,15 +91,7 @@ private bool EqualsValuesArray(IccClut other)
91
return false;
92
}
93
94
- for (int i = 0; i < this.Values.Length; i++)
95
- {
96
- if (!this.Values.SequenceEqual(other.Values))
97
98
- return false;
99
- }
100
101
-
102
- return true;
+ return this.Values.SequenceEqual(other.Values);
103
104
105
private void CheckValues()
0 commit comments