summary refs log tree commit diff
path: root/net_util
diff options
context:
space:
mode:
authorChirantan Ekbote <chirantan@chromium.org>2017-09-13 14:16:36 -0700
committerchrome-bot <chrome-bot@chromium.org>2017-09-18 16:48:43 -0700
commit42b3e8da55a5bcb6038728a2843a673aa5826c04 (patch)
tree64d68f548ad25383664c495b00fff9f5629f0b77 /net_util
parent88f9cba448ff7f1cd61c8bf66e34772132a8663f (diff)
downloadcrosvm-42b3e8da55a5bcb6038728a2843a673aa5826c04.tar
crosvm-42b3e8da55a5bcb6038728a2843a673aa5826c04.tar.gz
crosvm-42b3e8da55a5bcb6038728a2843a673aa5826c04.tar.bz2
crosvm-42b3e8da55a5bcb6038728a2843a673aa5826c04.tar.lz
crosvm-42b3e8da55a5bcb6038728a2843a673aa5826c04.tar.xz
crosvm-42b3e8da55a5bcb6038728a2843a673aa5826c04.tar.zst
crosvm-42b3e8da55a5bcb6038728a2843a673aa5826c04.zip
net_util: Remove unused import
The compiler was complaining about std::fmt::Debug being an unused
import.  Remove the import.

BUG=none
TEST=build_test and see no warnings about unused imports

Change-Id: I5e606982dffee575b3048b6c45cb5222e63ae3dc
Signed-off-by: Chirantan Ekbote <chirantan@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/669305
Reviewed-by: Jason Clinton <jclinton@chromium.org>
Reviewed-by: Stephen Barber <smbarber@chromium.org>
Reviewed-by: Dylan Reid <dgreid@chromium.org>
Reviewed-by: Zach Reizner <zachr@chromium.org>
Diffstat (limited to 'net_util')
-rw-r--r--net_util/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/net_util/src/lib.rs b/net_util/src/lib.rs
index b07a1e5..5c54687 100644
--- a/net_util/src/lib.rs
+++ b/net_util/src/lib.rs
@@ -6,7 +6,6 @@ extern crate libc;
 extern crate net_sys;
 extern crate sys_util;
 
-use std::fmt::Debug;
 use std::fs::File;
 use std::io::{Read, Write, Result as IoResult, Error as IoError, ErrorKind};
 use std::mem;