diff options
author | Matthias Krüger <matthias.krueger@famsik.de> | 2019-04-11 09:54:26 +0200 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-04-11 07:54:26 +0000 |
commit | 3478676f8f7ec6817b1e17d09926fc35a507977a (patch) | |
tree | c1b6d403446a312b635a3f1b75e884c3bc646a60 /copypasta | |
parent | d406627acb68ff861803c09089462027eb69b5e5 (diff) | |
download | alacritty-3478676f8f7ec6817b1e17d09926fc35a507977a.tar.gz alacritty-3478676f8f7ec6817b1e17d09926fc35a507977a.zip |
Remove redundant closures and imports
Diffstat (limited to 'copypasta')
-rw-r--r-- | copypasta/src/x11.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/copypasta/src/x11.rs b/copypasta/src/x11.rs index 3e0d7913..3bcf8455 100644 --- a/copypasta/src/x11.rs +++ b/copypasta/src/x11.rs @@ -124,7 +124,7 @@ impl Clipboard { S: AsRef<OsStr>, { use std::io::Write; - use std::process::{Command, Stdio}; + use std::process::Stdio; let contents = contents.into(); let mut child = Command::new("xclip").args(args).stdin(Stdio::piped()).spawn()?; |