Remove other Equals(object) calls.

This commit is contained in:
Huo Yaoyuan
2019-12-03 20:16:41 +08:00
parent 05cfef92f9
commit 5375af7820
2 changed files with 2 additions and 2 deletions

View File

@ -240,6 +240,6 @@ namespace osu.Game.Tests.Beatmaps
set => Objects = value;
}
public virtual bool Equals(ConvertMapping<TConvertValue> other) => StartTime.Equals(other?.StartTime);
public virtual bool Equals(ConvertMapping<TConvertValue> other) => StartTime == other?.StartTime;
}
}