From b9f663f99e1b80dc5f21c31c8d82deb72e66c6aa Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Mon, 5 Sep 2016 14:17:09 -0700 Subject: Update deps and remove printlns --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/main.rs b/src/main.rs index b148d31f..f2ef90b2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -193,7 +193,6 @@ fn main() { // Maybe draw the terminal let terminal = terminal.lock_high(); if terminal.dirty { - println!("dirty!"); display.draw(terminal); } @@ -244,7 +243,6 @@ impl PtyReader { } } - println!("updated terminal"); proxy.wakeup_event_loop(); // Move any leftover bytes to front of buffer @@ -348,7 +346,6 @@ impl Display { // Unlock the terminal mutex drop(terminal); - println!("swap buffers"); self.window.swap_buffers().unwrap(); } } -- cgit