crypto: Remove some dead key requests code for now.

master
Damir Jelić 2020-09-18 17:26:56 +02:00
parent dea3e4adf4
commit 562bb5aee3
2 changed files with 0 additions and 12 deletions

View File

@ -321,17 +321,6 @@ impl KeyRequestMachine {
Ok(())
}
fn handle_incoming_key_request(&self, event: &ToDeviceEvent<RoomKeyRequestEventContent>) {
match event.content.action {
Action::Request => todo!(),
Action::CancelRequest => todo!(),
}
}
fn cancel_request(&self) {
todo!()
}
}
#[cfg(test)]

View File

@ -30,7 +30,6 @@
mod error;
mod file_encryption;
mod identities;
#[allow(dead_code)]
mod key_request;
mod machine;
pub mod olm;