diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2022-01-28 12:21:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-28 12:21:40 +0100 |
| commit | 488ce510321ebcec36bccc45398feffe725cb5f0 (patch) | |
| tree | 9a7a52acf8169a7406cd41b166066198cfd19124 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 42724ef4118ca8225da537db0c087d6ae86dbae1 (diff) | |
Remove some allocations (#7246)
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 8db528330..2b0193771 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -434,7 +434,7 @@ namespace MediaBrowser.Controller.Library /// <param name="fileSystemChildren">The file system children.</param> /// <param name="directoryService">An instance of <see cref="IDirectoryService"/>.</param> /// <returns>IEnumerable<BaseItem>.</returns> - IEnumerable<BaseItem> FindExtras(BaseItem owner, List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService); + IEnumerable<BaseItem> FindExtras(BaseItem owner, IReadOnlyList<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService); /// <summary> /// Gets the collection folders. |
