diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-12-27 07:33:11 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-27 07:33:11 -0700 |
| commit | 251b9a5235e728f5b755cfd4b95f844e5e6c435f (patch) | |
| tree | ae88958599f260ea1d7e586c6a47931a5fe62f6b /Emby.Server.Implementations/IO/ManagedFileSystem.cs | |
| parent | 4441513ca4a64fdf61541e56cbb1091e7aa0395b (diff) | |
| parent | ea8f40e84a72ab1eb0bdbe4974cb78f7d1b0f552 (diff) | |
Merge pull request #7004 from Bond-009/cleanup2
Diffstat (limited to 'Emby.Server.Implementations/IO/ManagedFileSystem.cs')
| -rw-r--r-- | Emby.Server.Implementations/IO/ManagedFileSystem.cs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Emby.Server.Implementations/IO/ManagedFileSystem.cs b/Emby.Server.Implementations/IO/ManagedFileSystem.cs index 777cd2cd4..5c86dbbb7 100644 --- a/Emby.Server.Implementations/IO/ManagedFileSystem.cs +++ b/Emby.Server.Implementations/IO/ManagedFileSystem.cs @@ -544,16 +544,6 @@ namespace Emby.Server.Implementations.IO /// <inheritdoc /> public virtual bool AreEqual(string path1, string path2) { - if (path1 == null && path2 == null) - { - return true; - } - - if (path1 == null || path2 == null) - { - return false; - } - return string.Equals( NormalizePath(path1), NormalizePath(path2), |
