Remove more warnings

This commit is contained in:
Cody Robibero
2021-12-24 14:18:24 -07:00
parent 251b9a5235
commit 7bfc6b5679
50 changed files with 231 additions and 265 deletions

View File

@@ -14,7 +14,7 @@ namespace MediaBrowser.Controller.Providers
{
// Images aren't always used so the allocation is a waste a lot of the time
private List<LocalImageInfo> _images;
private List<(string url, ImageType type)> _remoteImages;
private List<(string Url, ImageType Type)> _remoteImages;
public MetadataResult()
{
@@ -27,9 +27,9 @@ namespace MediaBrowser.Controller.Providers
set => _images = value;
}
public List<(string url, ImageType type)> RemoteImages
public List<(string Url, ImageType Type)> RemoteImages
{
get => _remoteImages ??= new List<(string url, ImageType type)>();
get => _remoteImages ??= new List<(string Url, ImageType Type)>();
set => _remoteImages = value;
}