mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-17 15:53:42 +01:00
ReSharper Reformat: Properties to expression bodied form.
This commit is contained in:
@@ -19,10 +19,7 @@ namespace MediaBrowser.LocalMetadata.Images
|
||||
_fileSystem = fileSystem;
|
||||
}
|
||||
|
||||
public string Name
|
||||
{
|
||||
get { return "Internal Images"; }
|
||||
}
|
||||
public string Name => "Internal Images";
|
||||
|
||||
public bool Supports(BaseItem item)
|
||||
{
|
||||
@@ -50,14 +47,7 @@ namespace MediaBrowser.LocalMetadata.Images
|
||||
return true;
|
||||
}
|
||||
|
||||
public int Order
|
||||
{
|
||||
get
|
||||
{
|
||||
// Make sure this is last so that all other locations are scanned first
|
||||
return 1000;
|
||||
}
|
||||
}
|
||||
public int Order => 1000;
|
||||
|
||||
public List<LocalImageInfo> GetImages(BaseItem item, IDirectoryService directoryService)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user