1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

comm: remove unused import

This commit is contained in:
Tshepang Lekhonkhobe 2016-06-15 19:42:05 +02:00 committed by GitHub
parent 46c420bdf0
commit 80432e2b94

View file

@ -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";