diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-10-25 12:47:20 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-11-22 16:15:31 +0100 |
| commit | b477b3874ef8d79a1e27f8bb298d38443c3ec425 (patch) | |
| tree | 9e2ce5032892e4c590cab63269081c413cbfdac7 /Emby.Server.Implementations/Library/Validators/GenresPostScanTask.cs | |
| parent | 7846e9cb3cce026b81509454c8128cc7ca17c2f8 (diff) | |
Fix some warnings
Diffstat (limited to 'Emby.Server.Implementations/Library/Validators/GenresPostScanTask.cs')
| -rw-r--r-- | Emby.Server.Implementations/Library/Validators/GenresPostScanTask.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Library/Validators/GenresPostScanTask.cs b/Emby.Server.Implementations/Library/Validators/GenresPostScanTask.cs index 056807300..3bc5c2fb2 100644 --- a/Emby.Server.Implementations/Library/Validators/GenresPostScanTask.cs +++ b/Emby.Server.Implementations/Library/Validators/GenresPostScanTask.cs @@ -10,17 +10,18 @@ namespace Emby.Server.Implementations.Library.Validators public class GenresPostScanTask : ILibraryPostScanTask { /// <summary> - /// The _library manager + /// The _library manager. /// </summary> private readonly ILibraryManager _libraryManager; private readonly ILogger _logger; private readonly IItemRepository _itemRepo; /// <summary> - /// Initializes a new instance of the <see cref="ArtistsPostScanTask" /> class. + /// Initializes a new instance of the <see cref="GenresPostScanTask" /> class. /// </summary> /// <param name="libraryManager">The library manager.</param> /// <param name="logger">The logger.</param> + /// <param name="itemRepo">The item repository.</param> public GenresPostScanTask(ILibraryManager libraryManager, ILogger logger, IItemRepository itemRepo) { _libraryManager = libraryManager; |
