File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -503,8 +503,6 @@ impl<'a> Searcher<'a> {
503
503
traversal_mode : TraversalMode ,
504
504
process_queue : bool ,
505
505
) -> io:: Result < ( ) > {
506
- dbg ! ( & git_repository. is_some( ) ) ;
507
-
508
506
// Prevents infinite loops when following symlinks
509
507
if self . current_follow_symlinks {
510
508
if self . visited_dirs . contains ( & dir. to_path_buf ( ) ) {
@@ -629,7 +627,6 @@ impl<'a> Searcher<'a> {
629
627
Some ( repo) => Some ( repo) ,
630
628
None if apply_gitignore => {
631
629
repo = Repository :: open ( & path) . ok ( ) ;
632
- dbg ! ( "[DFS] REPO has been found!!!" ) ;
633
630
repo. as_ref ( )
634
631
} ,
635
632
_ => None ,
@@ -687,7 +684,6 @@ impl<'a> Searcher<'a> {
687
684
Some ( repo) => Some ( repo) ,
688
685
None if apply_gitignore => {
689
686
repo = Repository :: open ( & path) . ok ( ) ;
690
- dbg ! ( "[BFS] REPO has been found!!!" ) ;
691
687
repo. as_ref ( )
692
688
} ,
693
689
_ => None ,
You can’t perform that action at this time.
0 commit comments