Run 'cargo fmt'

This commit is contained in:
sharkdp 2018-09-07 21:50:47 +02:00 committed by David Peter
parent 375cf76e15
commit 8b4abb03db
1 changed files with 2 additions and 4 deletions

View File

@ -415,10 +415,8 @@ impl App {
} else { } else {
InputFile::Ordinary(filename) InputFile::Ordinary(filename)
} }
}) }).collect()
.collect() }).unwrap_or_else(|| vec![InputFile::StdIn])
})
.unwrap_or_else(|| vec![InputFile::StdIn])
} }
fn output_components(&self) -> Result<OutputComponents> { fn output_components(&self) -> Result<OutputComponents> {