mirror of
https://github.com/openharmony/third_party_rust_reqwest.git
synced 2026-07-21 04:05:26 -04:00
remove deprecated 'try!' macro
This commit is contained in:
committed by
Sean McArthur
parent
cf345a7d01
commit
628f33761a
+2
-2
@@ -253,8 +253,8 @@ static BLOCK_IN_FUTURE: &str = "blocking Client used inside a Future context";
|
||||
impl fmt::Display for Error {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
if let Some(ref url) = self.inner.url {
|
||||
r#try!(fmt::Display::fmt(url, f));
|
||||
r#try!(f.write_str(": "));
|
||||
fmt::Display::fmt(url, f)?;
|
||||
f.write_str(": ")?;
|
||||
}
|
||||
match self.inner.kind {
|
||||
Kind::Http(ref e) => fmt::Display::fmt(e, f),
|
||||
|
||||
Reference in New Issue
Block a user