mirror of
https://github.com/pcvolkmer/osc-variant.git
synced 2025-07-03 09:12:54 +00:00
chore: add ';' for consistent formatting
This commit is contained in:
@ -124,14 +124,14 @@ impl InputFile {
|
|||||||
result.push(InputFile::Osc {
|
result.push(InputFile::Osc {
|
||||||
filename: zip_file.name().to_string(),
|
filename: zip_file.name().to_string(),
|
||||||
content: buf,
|
content: buf,
|
||||||
})
|
});
|
||||||
} else {
|
} else {
|
||||||
let mut buf = BytesMut::new();
|
let mut buf = BytesMut::new();
|
||||||
let _ = zip_file.read(&mut buf);
|
let _ = zip_file.read(&mut buf);
|
||||||
result.push(InputFile::Other {
|
result.push(InputFile::Other {
|
||||||
filename: zip_file.name().to_string(),
|
filename: zip_file.name().to_string(),
|
||||||
content: buf.to_vec(),
|
content: buf.to_vec(),
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return Err(FileError::Parsing(
|
return Err(FileError::Parsing(
|
||||||
|
Reference in New Issue
Block a user