summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crates/searcher/src/searcher/core.rs2
1 files changed, 1 insertions, 1 deletions
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<bool, S::Error> {
- 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)