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 @@ -646,7 +646,6 @@ impl<'a> Translator<'a> {
646646 . and_then ( |x| x. body ( ) )
647647 . is_some_and ( |body| body. syntax ( ) == syntax)
648648 {
649- tracing:: debug!( "Skipping Fn body" ) ;
650649 return true ;
651650 }
652651 if syntax
@@ -655,7 +654,6 @@ impl<'a> Translator<'a> {
655654 . and_then ( |x| x. body ( ) )
656655 . is_some_and ( |body| body. syntax ( ) == syntax)
657656 {
658- tracing:: debug!( "Skipping Const body" ) ;
659657 return true ;
660658 }
661659 if syntax
@@ -664,7 +662,6 @@ impl<'a> Translator<'a> {
664662 . and_then ( |x| x. body ( ) )
665663 . is_some_and ( |body| body. syntax ( ) == syntax)
666664 {
667- tracing:: debug!( "Skipping Static body" ) ;
668665 return true ;
669666 }
670667 if syntax
@@ -673,7 +670,6 @@ impl<'a> Translator<'a> {
673670 . and_then ( |x| x. pat ( ) )
674671 . is_some_and ( |pat| pat. syntax ( ) == syntax)
675672 {
676- tracing:: debug!( "Skipping parameter" ) ;
677673 return true ;
678674 }
679675 }
You can’t perform that action at this time.
0 commit comments