Reformat code

This commit is contained in:
Torsten Flammiger 2022-01-13 12:26:23 +01:00
parent 7f2445be6c
commit eecd664c43

View File

@ -35,10 +35,10 @@ impl Appservice {
pub fn unregister_appservice(&self, service_name: &str) -> Result<()> { pub fn unregister_appservice(&self, service_name: &str) -> Result<()> {
self.id_appserviceregistrations self.id_appserviceregistrations
.remove(service_name.as_bytes())?; .remove(service_name.as_bytes())?;
self.cached_registrations. self.cached_registrations
write(). .write()
unwrap(). .unwrap()
remove(service_name); .remove(service_name);
Ok(()) Ok(())
} }