Remove debug print

This commit is contained in:
Roey Darwish Dror
2020-08-26 22:33:10 +03:00
parent 1317e51096
commit a1789e1b0a

View File

@@ -230,7 +230,7 @@ impl Terminal {
} }
'n' | 'N' | '\r' | '\n' => break Ok(false), 'n' | 'N' | '\r' | '\n' => break Ok(false),
'q' | 'Q' => return Err(io::Error::from(io::ErrorKind::Interrupted)), 'q' | 'Q' => return Err(io::Error::from(io::ErrorKind::Interrupted)),
_ => println!("hi"), _ => (),
} }
}; };