mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-06-25 14:22:54 +02:00
searcher: remove stray 'dbg!'
This commit is contained in:
@ -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> {
|
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)
|
self.match_by_line_fast(buf)
|
||||||
} else {
|
} else {
|
||||||
self.match_by_line_slow(buf)
|
self.match_by_line_slow(buf)
|
||||||
|
Reference in New Issue
Block a user