ReSharper Reformat: Properties to expression bodied form.

This commit is contained in:
Erwin de Haan
2019-01-13 21:31:14 +01:00
parent 9fa60ec934
commit a36658f6f0
185 changed files with 782 additions and 3786 deletions

View File

@@ -67,32 +67,13 @@ namespace MediaBrowser.LocalMetadata
return file.Exists && FileSystem.GetLastWriteTimeUtc(file) > item.DateLastSaved;
}
public string Name
{
get
{
return XmlProviderUtils.Name;
}
}
public string Name => XmlProviderUtils.Name;
public virtual int Order
{
get
{
// After Nfo
return 1;
}
}
public virtual int Order => 1;
}
static class XmlProviderUtils
{
public static string Name
{
get
{
return "Emby Xml";
}
}
public static string Name => "Emby Xml";
}
}