mirror of
https://github.com/Radarr/Radarr
synced 2025-02-22 06:11:09 +00:00
20 lines
419 B
C#
20 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Common
|
|
{
|
|
public class PathEqualityComparer : IEqualityComparer<String>
|
|
{
|
|
public bool Equals(string x, string y)
|
|
{
|
|
return x.PathEquals(y);
|
|
}
|
|
|
|
public int GetHashCode(string obj)
|
|
{
|
|
return obj.CleanFilePath().GetHashCode();
|
|
}
|
|
}
|
|
}
|