Remove debug println

This commit is contained in:
Alexandre Bury 2016-06-29 17:51:26 -07:00
parent ba26ab965b
commit 4dcb2ea901
2 changed files with 0 additions and 2 deletions

View File

@ -79,7 +79,6 @@ impl Backend for NcursesBackend {
}
fn print_at((x, y): (usize, usize), text: &str) {
println!("{} {}", x, y);
ncurses::mvaddstr(y as i32, x as i32, text);
}

View File

@ -22,7 +22,6 @@ impl<T: View + Any> ViewWrapper for IdView<T> {
wrap_impl!(&self.view);
fn wrap_find(&mut self, selector: &Selector) -> Option<&mut Any> {
println!(" ID VIEWING ");
match selector {
&Selector::Id(id) if id == self.id => Some(&mut self.view),
s => self.view.find(s),