summaryrefslogtreecommitdiffstats
path: root/copypasta
diff options
context:
space:
mode:
authorJoe Wilm <joe@jwilm.com>2016-12-16 22:29:35 -0800
committerJoe Wilm <joe@jwilm.com>2016-12-16 22:29:35 -0800
commit0421012c2d82ce2703bb122fd395d669a28f7d49 (patch)
tree3d7ce6d1a4872e48dc713f210942bad891fa75af /copypasta
parentdc918ae71a5e6c78a77994d7ce106a2253918c54 (diff)
Replace remaining use of `try!` with `?`
Diffstat (limited to 'copypasta')
-rw-r--r--copypasta/src/macos.rs5
-rw-r--r--copypasta/src/x11.rs12
2 files changed, 9 insertions, 8 deletions
diff --git a/copypasta/src/macos.rs b/copypasta/src/macos.rs
index 4910790d..dfbf5a87 100644
--- a/copypasta/src/macos.rs
+++ b/copypasta/src/macos.rs
@@ -222,11 +222,12 @@ impl super::Load for Clipboard {
type Err = Error;
fn new() -> Result<Self, Error> {
- Ok(Clipboard(try!(ns::Pasteboard::new())))
+ Ok(Clipboard(ns::Pasteboard::new()?))
}
fn load_primary(&self) -> Result<String, Self::Err> {
- Ok(try!(self::ns::PasteboardReadObject::<String>::read_object(&self.0)))
+ self::ns::PasteboardReadObject::<String>::read_object(&self.0)
+ .map_err(::std::convert::From::from)
}
}
diff --git a/copypasta/src/x11.rs b/copypasta/src/x11.rs
index 45fa4825..8d88c79e 100644
--- a/copypasta/src/x11.rs
+++ b/copypasta/src/x11.rs
@@ -71,17 +71,17 @@ impl Load for Clipboard {
}
fn load_primary(&self) -> Result<String, Self::Err> {
- let output = try!(Command::new("xclip")
+ let output = Command::new("xclip")
.args(&["-o", "-selection", "clipboard"])
- .output());
+ .output()?;
Clipboard::process_xclip_output(output)
}
fn load_selection(&self) -> Result<String, Self::Err> {
- let output = try!(Command::new("xclip")
+ let output = Command::new("xclip")
.args(&["-o"])
- .output());
+ .output()?;
Clipboard::process_xclip_output(output)
}
@@ -90,9 +90,9 @@ impl Load for Clipboard {
impl Clipboard {
fn process_xclip_output(output: Output) -> Result<String, Error> {
if output.status.success() {
- Ok(try!(String::from_utf8(output.stdout)))
+ String::from_utf8(output.stdout).map_err(::std::convert::From::from)
} else {
- Ok(try!(String::from_utf8(output.stderr)))
+ String::from_utf8(output.stderr).map_err(::std::convert::From::from)
}
}
}