style: run formatter

This commit is contained in:
Anna 2022-06-14 12:34:02 -04:00
parent 02118163ac
commit 6f507026c3
1 changed files with 4 additions and 4 deletions

View File

@ -60,7 +60,7 @@ internal class Message {
internal SeString ContentSource { get; }
internal SortCode SortCode { get; }
internal int Hash { get; }
internal Message(ulong receiver, ChatCode code, List<Chunk> sender, List<Chunk> content, SeString senderSource, SeString contentSource) {
@ -98,8 +98,8 @@ internal class Message {
}
private int GenerateHash() {
return this.SortCode.GetHashCode()
^ string.Join("", this.Sender.Select(c => c.StringValue())).GetHashCode()
^ string.Join("", this.Content.Select(c => c.StringValue())).GetHashCode();
return this.SortCode.GetHashCode()
^ string.Join("", this.Sender.Select(c => c.StringValue())).GetHashCode()
^ string.Join("", this.Content.Select(c => c.StringValue())).GetHashCode();
}
}