diff options
| author | Bond_009 <bond.009@outlook.com> | 2020-09-09 13:38:27 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2020-09-09 13:38:27 +0200 |
| commit | 48e1cf9fd7e2e7f4821d1255e5943deb305ec0be (patch) | |
| tree | 6ca07e846d547dbce6768bf0072f2c371b9a4e52 /MediaBrowser.Controller/Library | |
| parent | 46c8a6c1e832e00c4f9475f6dee980a515dc7e64 (diff) | |
Minor performance improvements to item saving
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -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 d2f937d4f..804170d5c 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -200,7 +200,7 @@ namespace MediaBrowser.Controller.Library /// <summary> /// Creates the items. /// </summary> - void CreateItems(IEnumerable<BaseItem> items, BaseItem parent, CancellationToken cancellationToken); + void CreateItems(IReadOnlyList<BaseItem> items, BaseItem parent, CancellationToken cancellationToken); /// <summary> /// Updates the item. |
