trait inheritance is strange

This commit is contained in:
2023-12-11 15:34:09 +01:00
parent 59f4a82da9
commit bae91a61d4
3 changed files with 9 additions and 3 deletions

View File

@ -162,7 +162,8 @@ impl SystemObjectIF for HandlerSender {
Err(_) => return Err(()),
};
self.other_handler_queue = other_handler.get_command_queue();
//TODO self.other_data.initialize(other_handler); // oh come on :/
self.other_data.initialize(other_handler)?;
Ok(())
}
}