Remove unused code

This commit is contained in:
Mike Dilger 2023-01-02 23:21:10 +13:00
parent f1f860f1a9
commit 30aea31818
2 changed files with 0 additions and 10 deletions

View File

@ -19,9 +19,6 @@ impl Minion {
let v: Vec<IdHex> = serde_json::from_str(&bus_message.json_payload)?;
self.get_events(v).await?;
}
"follow_event_reactions" => {
warn!("{}: follow event reactions unimplemented", &self.url);
}
"post_event" => {
let event: Event = serde_json::from_str(&bus_message.json_payload)?;
let msg = ClientMessage::Event(Box::new(event));

View File

@ -385,11 +385,4 @@ impl Minion {
Ok(())
}
/*
async fn follow_event_reactions(&mut self, _ids: Vec<IdHex>) -> Result<(), Error> {
// Create or extend the "reactions" subscription
unimplemented!()
}
*/
}