mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-19 01:30:21 -07:00
searcher: remove stray 'dbg!'
This commit is contained in:
parent
b13d835d95
commit
6a13a4f64d
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user