1 files changed, 1 insertions, 3 deletions
diff --git a/LibMatrix.EventTypes/EventContent.cs b/LibMatrix.EventTypes/EventContent.cs
index 608550f..c582cf2 100644
--- a/LibMatrix.EventTypes/EventContent.cs
+++ b/LibMatrix.EventTypes/EventContent.cs
@@ -25,9 +25,7 @@ public abstract class TimelineEventContent : EventContent {
return this;
}
- public T SetReplaceRelation<T>(string eventId) where T : TimelineEventContent {
- return SetReplaceRelation(eventId) as T ?? throw new InvalidOperationException();
- }
+ public T SetReplaceRelation<T>(string eventId) where T : TimelineEventContent => SetReplaceRelation(eventId) as T ?? throw new InvalidOperationException();
public class MessageRelatesTo {
[JsonPropertyName("m.in_reply_to")]
|