(fmt) remove trailing whitespaces

This commit is contained in:
AnthonyMikh 2019-10-01 02:30:52 +03:00 committed by GitHub
parent bb442881fc
commit e5db5b34d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1001,7 +1001,7 @@ impl EmitterWriter {
Some(ref sm) => sm, Some(ref sm) => sm,
None => return 0, None => return 0,
}; };
let mut max = 0; let mut max = 0;
for primary_span in msp.primary_spans() { for primary_span in msp.primary_spans() {
if !primary_span.is_dummy() { if !primary_span.is_dummy() {
@ -1017,7 +1017,7 @@ impl EmitterWriter {
} }
} }
} }
max max
} }