Remove empty lines following braces.

This commit is contained in:
Josh Matthews 2016-05-27 13:32:05 -04:00
parent 4ebc065cba
commit 3cb8af20c2
69 changed files with 3 additions and 162 deletions

View file

@ -138,9 +138,7 @@ impl Profiler {
let (chan, port) = ipc::channel().unwrap();
reporter.collect_reports(ReportsChan(chan));
if let Ok(mut reports) = port.recv() {
for report in &mut reports {
// Add "explicit" to the start of the path, when appropriate.
match report.kind {
ReportKind::ExplicitJemallocHeapSize |

View file

@ -182,7 +182,7 @@ impl Profiler {
});
// decide if we need to spawn the timer thread
match option {
&OutputOptions::FileName(_) => {/* no timer thread needed */},
&OutputOptions::FileName(_) => { /* no timer thread needed */ },
&OutputOptions::Stdout(period) => {
// Spawn a timer thread
let chan = chan.clone();
@ -389,7 +389,7 @@ impl Profiler {
}
writeln!(&mut lock, "").unwrap();
},
None => {/* Do nothing if not output option has been set */},
None => { /* Do nothing if not output option has been set */ },
};
}
}