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> {
646
646
. and_then ( |x| x. body ( ) )
647
647
. is_some_and ( |body| body. syntax ( ) == syntax)
648
648
{
649
- tracing:: debug!( "Skipping Fn body" ) ;
650
649
return true ;
651
650
}
652
651
if syntax
@@ -655,7 +654,6 @@ impl<'a> Translator<'a> {
655
654
. and_then ( |x| x. body ( ) )
656
655
. is_some_and ( |body| body. syntax ( ) == syntax)
657
656
{
658
- tracing:: debug!( "Skipping Const body" ) ;
659
657
return true ;
660
658
}
661
659
if syntax
@@ -664,7 +662,6 @@ impl<'a> Translator<'a> {
664
662
. and_then ( |x| x. body ( ) )
665
663
. is_some_and ( |body| body. syntax ( ) == syntax)
666
664
{
667
- tracing:: debug!( "Skipping Static body" ) ;
668
665
return true ;
669
666
}
670
667
if syntax
@@ -673,7 +670,6 @@ impl<'a> Translator<'a> {
673
670
. and_then ( |x| x. pat ( ) )
674
671
. is_some_and ( |pat| pat. syntax ( ) == syntax)
675
672
{
676
- tracing:: debug!( "Skipping parameter" ) ;
677
673
return true ;
678
674
}
679
675
}
You can’t perform that action at this time.
0 commit comments