style: run formatter

This commit is contained in:
Anna
2022-06-14 12:34:02 -04:00
parent 02118163ac
commit 6f507026c3
+3 -3
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();
}
}