mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 16:02:59 +01:00
Replace use of try!() with ?
This commit is contained in:
parent
65b8197876
commit
5b4b885fd6
@ -171,16 +171,16 @@ impl Display for ContentRangeSpec {
|
||||
range,
|
||||
instance_length,
|
||||
} => {
|
||||
try!(f.write_str("bytes "));
|
||||
f.write_str("bytes ")?;
|
||||
match range {
|
||||
Some((first_byte, last_byte)) => {
|
||||
try!(write!(f, "{}-{}", first_byte, last_byte));
|
||||
write!(f, "{}-{}", first_byte, last_byte)?;
|
||||
}
|
||||
None => {
|
||||
try!(f.write_str("*"));
|
||||
f.write_str("*")?;
|
||||
}
|
||||
};
|
||||
try!(f.write_str("/"));
|
||||
f.write_str("/")?;
|
||||
if let Some(v) = instance_length {
|
||||
write!(f, "{}", v)
|
||||
} else {
|
||||
@ -191,8 +191,8 @@ impl Display for ContentRangeSpec {
|
||||
ref unit,
|
||||
ref resp,
|
||||
} => {
|
||||
try!(f.write_str(unit));
|
||||
try!(f.write_str(" "));
|
||||
f.write_str(unit)?;
|
||||
f.write_str(" ")?;
|
||||
f.write_str(resp)
|
||||
}
|
||||
}
|
||||
|
@ -59,7 +59,7 @@ impl<T: PartialEq> cmp::PartialOrd for QualityItem<T> {
|
||||
|
||||
impl<T: fmt::Display> fmt::Display for QualityItem<T> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
try!(fmt::Display::fmt(&self.item, f));
|
||||
fmt::Display::fmt(&self.item, f)?;
|
||||
match self.quality.0 {
|
||||
1000 => Ok(()),
|
||||
0 => f.write_str("; q=0"),
|
||||
|
Loading…
Reference in New Issue
Block a user