Fix warning: Qualifier is redundant (#2149)

This commit is contained in:
KonH
2021-10-03 11:00:45 +07:00
parent b6bf43af45
commit e3fccd5ae6
6 changed files with 8 additions and 8 deletions

View File

@@ -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);