From 80432e2b94557ea545a38b4bdaaeb75645743f40 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Wed, 15 Jun 2016 19:42:05 +0200 Subject: [PATCH] comm: remove unused import --- src/comm/comm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comm/comm.rs b/src/comm/comm.rs index deeffa481..c42efe2b2 100644 --- a/src/comm/comm.rs +++ b/src/comm/comm.rs @@ -14,7 +14,7 @@ extern crate getopts; use getopts::Options; use std::cmp::Ordering; use std::fs::File; -use std::io::{self, BufRead, BufReader, Read, stdin, Stdin}; +use std::io::{self, BufRead, BufReader, stdin, Stdin}; use std::path::Path; static NAME: &'static str = "comm";