events: Remove questionable trait implementation

This commit is contained in:
Jonas Platte 2021-05-16 23:21:58 +02:00
parent 062c2cc55b
commit aba58909aa
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -5,7 +5,7 @@ use ruma_events_macros::{Event, EventContent};
use ruma_identifiers::{EventId, RoomId, UserId}; use ruma_identifiers::{EventId, RoomId, UserId};
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use crate::{RedactedStateEventContent, Unsigned}; use crate::Unsigned;
/// Redaction event. /// Redaction event.
#[derive(Clone, Debug, Event)] #[derive(Clone, Debug, Event)]
@ -75,5 +75,3 @@ impl RedactionEventContent {
Self { reason: Some(reason) } Self { reason: Some(reason) }
} }
} }
impl RedactedStateEventContent for RedactedRedactionEventContent {}