Replace uses of try!() macro with "?" operator

This commit is contained in:
Matthias Beyer 2017-10-30 20:19:29 +01:00
parent 246bf04dbf
commit 1dda98e17e

View file

@ -88,7 +88,7 @@ fn add(rt: &Runtime) {
BookmarkCollection::get(rt.store(), &coll) BookmarkCollection::get(rt.store(), &coll)
.and_then(|mut collection| { .and_then(|mut collection| {
for url in scmd.values_of("urls").unwrap() { // unwrap saved by clap for url in scmd.values_of("urls").unwrap() { // unwrap saved by clap
let _ = try!(collection.add_link(BookmarkLink::from(url))); let _ = collection.add_link(BookmarkLink::from(url))?;
} }
Ok(()) Ok(())
}) })