style: run formatter

This commit is contained in:
Anna 2022-06-14 12:34:02 -04:00
parent 561a600a7b
commit c787dda819
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0

View File

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