diff --git a/src/ui.rs b/src/ui.rs index a02745d..996088f 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -226,10 +226,6 @@ impl State { Ok(()) } - - fn print_end_report(&mut self) -> Result<()> { - Ok(()) - } } #[derive(Debug, Clone)] @@ -265,7 +261,6 @@ pub fn init() -> (MsgQueue, impl Future>) { state.render()?; if exit { - state.print_end_report()?; Ok(None) } else { Ok(Some((current_queue, state)))