diff options
| author | Bond_009 <bond.009@outlook.com> | 2020-02-23 10:53:51 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2020-02-23 10:53:51 +0100 |
| commit | a07ee6536567a048b85d4bdc7d17e1c46f292572 (patch) | |
| tree | 32a5b1772dcf04162a5647f9729a56027e3f613f /MediaBrowser.Controller/Providers/IDirectoryService.cs | |
| parent | 72c98e41ca2c0042edf645298371245c1abee354 (diff) | |
Minor improvements
Diffstat (limited to 'MediaBrowser.Controller/Providers/IDirectoryService.cs')
| -rw-r--r-- | MediaBrowser.Controller/Providers/IDirectoryService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Providers/IDirectoryService.cs b/MediaBrowser.Controller/Providers/IDirectoryService.cs index 8059d2bd1..e3815facc 100644 --- a/MediaBrowser.Controller/Providers/IDirectoryService.cs +++ b/MediaBrowser.Controller/Providers/IDirectoryService.cs @@ -9,7 +9,7 @@ namespace MediaBrowser.Controller.Providers List<FileSystemMetadata> GetFiles(string path); FileSystemMetadata GetFile(string path); - List<string> GetFilePaths(string path); - List<string> GetFilePaths(string path, bool clearCache); + IReadOnlyList<string> GetFilePaths(string path); + IReadOnlyList<string> GetFilePaths(string path, bool clearCache); } } |
