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

Merge pull request #899 from tshepang/patch-1

comm: remove unused import
This commit is contained in:
Heather 2016-06-15 22:37:13 +04:00 committed by GitHub
commit d52869ef26

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