mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Reduce Linq usage a little bit more
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using SabreTools.Hashing;
|
||||
using SabreTools.IO.Extensions;
|
||||
|
||||
@@ -25,7 +24,7 @@ namespace SabreTools.Core.Tools
|
||||
return false;
|
||||
|
||||
// Otherwise, they need to match exactly
|
||||
return firstHash.SequenceEqual(secondHash);
|
||||
return Matching.Extensions.EqualsExactly(firstHash, secondHash);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user