diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-04 23:18:11 -0400 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-04 23:18:47 -0400 |
| commit | 735d6c8ad531904c24650d88dd07ef3e57ded46a (patch) | |
| tree | ded2e8f76919e8874ab505bb6aa5648e297831c2 /Emby.Server.Implementations/Data/SqliteItemRepository.cs | |
| parent | 241d0ae65cca0ffdd92b7c366d692acaa71cd211 (diff) | |
Convert properties in ApplicationHost to private readonly fields, where possible
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteItemRepository.cs')
| -rw-r--r-- | Emby.Server.Implementations/Data/SqliteItemRepository.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs index 227f1a5e7..8db4146cd 100644 --- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs +++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs @@ -42,7 +42,7 @@ namespace Emby.Server.Implementations.Data private readonly IServerConfigurationManager _config; private readonly IServerApplicationHost _appHost; private readonly ILocalizationManager _localization; - // TODO: Remove this dependency + // TODO: Remove this dependency. GetImageCacheTag() is the only method used and it can be converted to a static helper method private readonly IImageProcessor _imageProcessor; private readonly TypeMapper _typeMapper; |
