1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-03-17 20:28:03 +02:00

searcher: remove stray 'dbg!'

This commit is contained in:
Andrew Gallant 2022-07-15 10:05:20 -04:00
parent b13d835d95
commit 6a13a4f64d
No known key found for this signature in database
GPG Key ID: B2E3A4923F8B0D44

View File

@ -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)