Remove debugging print

Everybody does it, right?
This commit is contained in:
Ben S 2015-02-24 16:07:31 +00:00
parent f505bdc869
commit cbc3640ced

View File

@ -452,7 +452,6 @@ impl RecurseOptions {
match self.max_depth {
None => false,
Some(d) => {
println!("Comparing {} to {}", d, depth);
d <= depth
}
}