mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
Fix warning: Qualifier is redundant (#2149)
This commit is contained in:
@@ -2997,7 +2997,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public bool Equals(BaseItem other) => object.Equals(Id, other?.Id);
|
||||
public bool Equals(BaseItem other) => Equals(Id, other?.Id);
|
||||
|
||||
/// <inheritdoc />
|
||||
public override int GetHashCode() => HashCode.Combine(Id);
|
||||
|
||||
Reference in New Issue
Block a user