mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-05 19:16:24 +01:00
replace a few unwraps() with ? where possible
This commit is contained in:
@@ -428,9 +428,8 @@ impl<'a> Read for MultiPartReader<'a> {
|
||||
.join(LINE_ENDING),
|
||||
LINE_ENDING,
|
||||
LINE_ENDING,
|
||||
))
|
||||
.unwrap();
|
||||
c.rewind().unwrap();
|
||||
))?;
|
||||
c.rewind()?;
|
||||
self.current_part = Some((c, reader));
|
||||
}
|
||||
_ => {}
|
||||
|
||||
Reference in New Issue
Block a user