Removes redundant `mut` in service.rs.in (#6775)

This commit is contained in:
Dmitry Kashitsyn 2017-10-15 22:41:40 +07:00 committed by Arkadiy Paronyan
parent 82c8dccddf
commit b03117b262
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ impl HypervisorService {
// return type for making method synchronous
fn module_ready(&self, module_id: u64, control_url: String) -> bool {
let mut modules = self.modules.write().unwrap();
modules.get_mut(&module_id).map(|mut module| {
modules.get_mut(&module_id).map(|module| {
module.started = true;
module.control_url = control_url;
});
@ -60,7 +60,7 @@ impl HypervisorService {
// return type for making method synchronous
fn module_shutdown(&self, module_id: u64) -> bool {
let mut modules = self.modules.write().unwrap();
modules.get_mut(&module_id).map(|mut module| {
modules.get_mut(&module_id).map(|module| {
module.shutdown = true;
});
trace!(target: "hypervisor", "Module shutdown: {}", module_id);