Skip to content

Commit

Permalink
Remove println. Do'h.
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Aug 5, 2016
1 parent 11447f0 commit a3422ff
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/dfa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1168,9 +1168,7 @@ impl<'a> Fsm<'a> {
}
// If the cache has gotten too big, wipe it.
if self.approximate_size() > self.prog.dfa_size_limit {
println!("clearing cache (size: {:?})", self.approximate_size());
if !self.clear_cache_and_save(current_state) {
println!("giving up");
// Ooops. DFA is giving up.
return None;
}
Expand Down

0 comments on commit a3422ff

Please sign in to comment.