From a3422ffb8624d41dfb4ec11338f444926d0e9bb2 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Thu, 4 Aug 2016 21:10:58 -0400 Subject: [PATCH] Remove println. Do'h. --- src/dfa.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/dfa.rs b/src/dfa.rs index ed472efca2..c453d63d72 100644 --- a/src/dfa.rs +++ b/src/dfa.rs @@ -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; }