]> git.proxmox.com Git - pve-xtermjs.git/commitdiff
avoid unnecessary use statement for std::io::Read
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 11 Nov 2020 15:00:25 +0000 (16:00 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 11 Nov 2020 15:00:28 +0000 (16:00 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/main.rs

index c7bd32e9ac6f06bef6ebc01c4b96c47e75089b62..12e70bc6d4cdd902546f7d9e9bddda429884a5be 100644 (file)
@@ -1,7 +1,7 @@
 use std::cmp::min;
 use std::collections::HashMap;
 use std::ffi::{OsStr, OsString};
-use std::io::{ErrorKind, Read, Result, Write};
+use std::io::{ErrorKind, Result, Write};
 use std::net::TcpStream;
 use std::os::unix::io::{AsRawFd, FromRawFd};
 use std::os::unix::process::CommandExt;