mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Use collection initializers when possible
This commit is contained in:
parent
b34cbc2f16
commit
919b8ef9e2
@ -53,10 +53,7 @@ namespace MediaBrowser.Providers.Plugins.StudioImages
|
||||
/// <inheritdoc />
|
||||
public IEnumerable<ImageType> GetSupportedImages(BaseItem item)
|
||||
{
|
||||
return new ImageType[]
|
||||
{
|
||||
ImageType.Thumb
|
||||
};
|
||||
return [ImageType.Thumb];
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
@ -72,13 +69,10 @@ namespace MediaBrowser.Providers.Plugins.StudioImages
|
||||
|
||||
if (imageInfo is null)
|
||||
{
|
||||
return Enumerable.Empty<RemoteImageInfo>();
|
||||
return [];
|
||||
}
|
||||
|
||||
return new RemoteImageInfo[]
|
||||
{
|
||||
imageInfo
|
||||
};
|
||||
return [imageInfo];
|
||||
}
|
||||
|
||||
private RemoteImageInfo GetImage(BaseItem item, string filename, ImageType type, string remoteFilename)
|
||||
|
Loading…
x
Reference in New Issue
Block a user