mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
remove dead interface objects
This commit is contained in:
@@ -22,9 +22,7 @@ namespace MediaBrowser.Server.Implementations.Sorting
|
||||
|
||||
private float GetValue(BaseItem x)
|
||||
{
|
||||
var hasCriticRating = x as IHasCriticRating;
|
||||
|
||||
return hasCriticRating == null ? 0 : hasCriticRating.CriticRating ?? 0;
|
||||
return x.CriticRating ?? 0;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user