clippy fix
This commit is contained in:
parent
1fd5df7151
commit
b8a3770a1a
1 changed files with 3 additions and 5 deletions
|
@ -7,11 +7,9 @@ pub fn lines_from(file_name: &str) -> Result<Vec<String>> {
|
|||
let file = File::open(file_name)?;
|
||||
let reader = BufReader::new(file);
|
||||
let mut lines = vec![];
|
||||
for line in reader.lines() {
|
||||
if let Ok(line) = line {
|
||||
if line.starts_with('@') {
|
||||
lines.push(line);
|
||||
}
|
||||
for line in reader.lines().flatten() {
|
||||
if line.starts_with('@') {
|
||||
lines.push(line);
|
||||
}
|
||||
}
|
||||
Ok(lines)
|
||||
|
|
Loading…
Add table
Reference in a new issue