From 6a13a4f64dc7648e15a914b470f0aaae0fc3f6f0 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Fri, 15 Jul 2022 10:05:20 -0400 Subject: searcher: remove stray 'dbg!' --- crates/searcher/src/searcher/core.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/searcher/src/searcher/core.rs b/crates/searcher/src/searcher/core.rs index e68780ac..7d6ccd66 100644 --- a/crates/searcher/src/searcher/core.rs +++ b/crates/searcher/src/searcher/core.rs @@ -108,7 +108,7 @@ impl<'s, M: Matcher, S: Sink> Core<'s, M, S> { } pub fn match_by_line(&mut self, buf: &[u8]) -> Result { - if dbg!(self.is_line_by_line_fast()) { + if self.is_line_by_line_fast() { self.match_by_line_fast(buf) } else { self.match_by_line_slow(buf) -- cgit v1.2.3