Skip to content

Commit c97996f

Browse files
Amr Heshamytmimi
Amr Hesham
authored andcommitted
collapse nested if detected by clippy
1 parent 76ef162 commit c97996f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/types.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -682,10 +682,12 @@ impl Rewrite for ast::Ty {
682682
};
683683
let mut res = bounds.rewrite(context, shape)?;
684684
// We may have falsely removed a trailing `+` inside macro call.
685-
if context.inside_macro() && bounds.len() == 1 {
686-
if context.snippet(self.span).ends_with('+') && !res.ends_with('+') {
687-
res.push('+');
688-
}
685+
if context.inside_macro()
686+
&& bounds.len() == 1
687+
&& context.snippet(self.span).ends_with('+')
688+
&& !res.ends_with('+')
689+
{
690+
res.push('+');
689691
}
690692
Some(format!("{prefix}{res}"))
691693
}

0 commit comments

Comments
 (0)