diff --git a/src/runtime/communication.rs b/src/runtime/communication.rs index 1c0749e848722b157d134d84e1ac6713b79813ea..8df9f261e33c9ae5c9929f5bdcc78c727ccb182e 100644 --- a/src/runtime/communication.rs +++ b/src/runtime/communication.rs @@ -1,14 +1,6 @@ use crate::common::*; use crate::runtime::{actors::*, endpoint::*, errors::*, *}; -macro_rules! lockprintln { - () => (print!("\n")); - ($($arg:tt)*) => ({ - use std::io::Write; - std::writeln!(std::io::stdout().lock(), $($arg)*).expect("LPRINTLN"); - }) -} - impl Controller { fn end_round_with_decision(&mut self, decision: Predicate) -> Result<(), SyncErr> { let mut all_inboxes = HashMap::default();