Use generic IComparable together with IEqutable for Message.

This commit is contained in:
Huo Yaoyuan
2017-05-17 18:02:17 +08:00
parent 12716d2ab4
commit b9b45493e6
2 changed files with 4 additions and 12 deletions

View File

@ -8,7 +8,7 @@ using osu.Game.Users;
namespace osu.Game.Online.Chat
{
public class Message
public class Message : IComparable<Message>, IEquatable<Message>
{
[JsonProperty(@"message_id")]
public readonly long Id;
@ -42,17 +42,9 @@ namespace osu.Game.Online.Chat
Id = id;
}
public override bool Equals(object obj)
{
var objMessage = obj as Message;
public int CompareTo(Message other) => Id.CompareTo(other.Id);
return Id == objMessage?.Id;
}
public override int GetHashCode()
{
return Id.GetHashCode();
}
public bool Equals(Message other) => Id == other.Id;
}
public enum TargetType