aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller')
-rw-r--r--MediaBrowser.Controller/Providers/DirectoryService.cs5
-rw-r--r--MediaBrowser.Controller/Providers/IDirectoryService.cs2
2 files changed, 1 insertions, 6 deletions
diff --git a/MediaBrowser.Controller/Providers/DirectoryService.cs b/MediaBrowser.Controller/Providers/DirectoryService.cs
index ba5290763..b31270270 100644
--- a/MediaBrowser.Controller/Providers/DirectoryService.cs
+++ b/MediaBrowser.Controller/Providers/DirectoryService.cs
@@ -60,10 +60,7 @@ namespace MediaBrowser.Controller.Providers
}
public IReadOnlyList<string> GetFilePaths(string path)
- => GetFilePaths(path, false, false);
-
- public IReadOnlyList<string> GetSortedFilePaths(string path, bool clearCache)
- => GetFilePaths(path, clearCache, true);
+ => GetFilePaths(path, false);
public IReadOnlyList<string> GetFilePaths(string path, bool clearCache, bool sort = false)
{
diff --git a/MediaBrowser.Controller/Providers/IDirectoryService.cs b/MediaBrowser.Controller/Providers/IDirectoryService.cs
index beb685b6d..b1a36e102 100644
--- a/MediaBrowser.Controller/Providers/IDirectoryService.cs
+++ b/MediaBrowser.Controller/Providers/IDirectoryService.cs
@@ -15,8 +15,6 @@ namespace MediaBrowser.Controller.Providers
IReadOnlyList<string> GetFilePaths(string path);
- IReadOnlyList<string> GetSortedFilePaths(string path, bool clearCache);
-
IReadOnlyList<string> GetFilePaths(string path, bool clearCache, bool sort = false);
}
}