mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-06 22:32:57 +01:00
ReSharper Reformat: Properties to expression bodied form.
This commit is contained in:
@@ -23,15 +23,9 @@ namespace MediaBrowser.Providers.BoxSets
|
||||
_httpClient = httpClient;
|
||||
}
|
||||
|
||||
public string Name
|
||||
{
|
||||
get { return ProviderName; }
|
||||
}
|
||||
public string Name => ProviderName;
|
||||
|
||||
public static string ProviderName
|
||||
{
|
||||
get { return "TheMovieDb"; }
|
||||
}
|
||||
public static string ProviderName => "TheMovieDb";
|
||||
|
||||
public bool Supports(BaseItem item)
|
||||
{
|
||||
@@ -150,10 +144,7 @@ namespace MediaBrowser.Providers.BoxSets
|
||||
.ThenByDescending(i => i.vote_count);
|
||||
}
|
||||
|
||||
public int Order
|
||||
{
|
||||
get { return 0; }
|
||||
}
|
||||
public int Order => 0;
|
||||
|
||||
public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user